My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Holding the Reins A Silver Pines Novel by Paisley Hope
  • DOWNLOADS God of War by Rina Kent
  • PDF Download The Swans of Harlem Five Black Ballerinas Fifty Years of Sisterhood and Their Recla
  • Protecting the Pack by Julie Miller on Ipad
  • DOWNLOADS The Borrow a Boyfriend Club by Page Powars
  • Read Pdf Drawing the Body Reading the Human Form in Art by Roberto Osti
  • PDF The Nightingale Deluxe Edition A Novel by Kristin Hannah
  • PDF Villains Are Destined to Die Vol. 7 by SUOL AH Cho David Odell
  • PDF Kindle The Only One Left A Novel by Riley Sager
  • A Convenient Christmas Bride by Rhonda Gibson on Audiobook New
  • Read online You Between the Lines by Katie Naymon
  • Online Read Ebook The Ballad of Songbirds and Snakes A Hunger Games Novel by Suzanne Collins
  • pdf download New Moons Phases of Healing by r.h. Sin
  • I Want You to Be Happy Finding Peace and Abundance in Everyday Life by Pope Francis on Iphone New Fo
  • PDF Jonty Gentoo The Adventures of a Penguin by Julia Donaldson Axel Scheffler
  • epub download How Not to Chaperone a Lady A Steamy Historical Romance Book by Virginia Heath
  • PDF DOWNLOAD The Way I Am Now by Amber Smith on Iphone
  • Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru on Audiobook New
  • PDF The Lumberjacks Bride by Jean Kincaid
  • DOWNLOAD PDF EPUB A Murder Most French by Colleen Cambridge
  • PDF Download Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie Souza
  • PDF EPUB Download The Lost Library by Rebecca Stead Wendy Mass Full Book
  • download pdf Sonic the Hedgehog Official Movie Novelizations by Kiel Phegley
  • Pdf ePub Sunstone Volume 5 by Stjepan Sejic download ebook
  • Read Pdf Taylor Swift Superstar by Shana Corey
  • Read online The Games Gods Play Deluxe Limited Edition by Abigail Owen
  • PDF DOWNLOAD Son of Southtown My Life Between Two Worlds by Sonny Sandoval Jon Foreman on Iphone
  • PDF Marvel Studios 100 Objects Iconic Artifacts from the MCU by Tracey Miller-Zarneke
  • DOWNLOAD PDF EPUB Wyoming Promises by Kerri Mountain
  • epub download Handyman Saitou in Another World Vol. 6 by Ichitomo Kazutomo Sheldon Drzka
  • Dry by Neal Shusterman Jarrod Shusterman on Ipad
  • Pdf ePub Firefly Planisphere Latitude 42 Degrees North by Robin Scagell download ebook
  • The Twilight Saga Deluxe Hardcover Collection by Stephenie Meyer on Iphone New Format
  • Download PDF Viento y verdad Wind and Truth by Brandon Sanderson Manuel Viciano Delibano David T
  • Online Read Ebook The Marshals Mission by Anna Zogg
  • Read Pdf An Alaskan Arrangement by Michelle Lindo-Rice
  • DOWNLOAD PDF EPUB TANKHEAD - Mechanical Encyclopedia Artbook by Tim Popelier Emerson Tung
  • 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
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 02:43:01
Previous
Find pet by ID
Next
Update an existing pet
Built with