My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Chain Gang All Stars A Novel by Nana Kwame Adjei-Brenyah Full Book
  • Read pdf The Way of Heaven and Earth From Either Or to the Catholic Both And by Matthew Becklo
  • PDF Kindle Una tortuguita Read and Wonder by Nicola Davies Jane Chapman
  • Read online Milky Way by Muriel Jensen
  • Download PDF Foul Play by Erin Kaste
  • PDF EPUB Download Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson Full Book
  • Alas de sangre Empíreo 1 Edición coleccionista enriquecida y limitada Fourth Wing by Rebecca Yarro
  • pdf download Just a Hint -- Clint by Lori Foster
  • Why Its OK to Have Bad Spelling and Grammar by Jessica Flanigan on Iphone New Format
  • DOWNLOAD PDF EPUB The Story Collector by Evie Woods
  • Read Pdf Bone Pendant Girls by Terry S. Friedman
  • Thieme Review for the USMLE A WIN for Step 2 and 3 CK by Manoj Gurung Yayra Musabek on Audiobook Ne
  • PDF Learn AI-assisted Python Programming With GitHub Copilot and ChatGPT by Leo Porter Daniel Zing
  • Read pdf MARVEL MASTERWORKS THE INVINCIBLE IRON MAN VOL. 18 by Dennis ONeil Marvel Various Luke
  • Read pdf The Only Constant A Guide to Embracing Change and Leading an Authentic Life by Najwa Zebi
  • Kingmakers Graduation Deluxe Edition by Sophie Lark on Ipad
  • Online Read Ebook Henri Cartier-Bresson The Decisive Moment by Henri Cartier-Bresson Cl ment Ch rou
  • DOWNLOADS The End of the Moment We Had by Toshiki Okada Samuel Malissa
  • PDF EPUB Download Seven Ghosts by Chris Priestley Full Book
  • PDF DOWNLOAD Twilight Deluxe Collectors Edition by Stephenie Meyer on Iphone
  • A Handheld History by Lost in Cult on Ipad
  • PDF DOWNLOAD Cinema Her Way Visionary Female Directors in Their Own Words by Marya E. Gates ALEX
  • Read online Sharing Body Heat by Lexie Davis
  • PDF EPUB Download Lucia and the Loom Weaving Her Way to Happiness Volume 3 by Hisaya Amagishi Eso
  • PDF Shallow River by H. D. Carlton
  • PDF Kindle Your Magnificent Mouth A Training Young Hearts rhyming book by Abbey Wedgeworth Emma Ra
  • download pdf Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell
  • PDF Download The Soul of Wealth 50 reflections on money and meaning by Daniel Crosby
  • DOWNLOADS Spirits Adopted A Daisy Gumm Majesty Mystery Book 20 Historical Cozy Mystery by Alice Dun
  • PDF Kindle The Warriors Bride Alliance by Denise Lynn
  • Online Read Ebook Philosophy and Life Exploring the Great Questions of How to Live by A. C. Grayling
  • download pdf The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newpo
  • PDF EPUB Download Intertwined From Insects to Icebergs by Michael Gross Full Book
  • PDF Kindle Royal Rescue by Tammy Johnson
  • PDF EPUB Download The Lady in Glass and Other Stories by Anne Bishop Full Book
  • DOWNLOAD PDF EPUB The Royal House of Karedes Books 1-4 Billionaire Prince Pregnant Mistress The P
  • PDF Starfinder RPG Ports of Call by Kate Baker Brian Bauman Jessica Catalan John Compton John C
  • DOWNLOADS The Woman by the Lake by Kristen Ashley
  • PDF Kindle Pet Sematary by Stephen King
  • Online Read Ebook Aim to Misbehave Firefly by Rosiee Thor
  • PDF EPUB Download Cuentos by Dan Henderson Full Book
  • PDF EPUB Download The Villainess and the Demon Knight Light Novel Vol. 2 by Nekota Asahiko Full B
  • Pdf ePub The Marquess Next Door A Steamy Historical Romance Book by Virginia Heath download ebook
  • Download PDF Beyond Disruption Innovate and Achieve Growth without Displacing Industries Companies
  • PDF Download Money Lies and God Inside the Movement to Destroy American Democracy by Katherine S
  • PDF Download The Comeuppance by Branden Jacobs-Jenkins
  • Pdf ePub Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yuka
  • Read pdf The X-Files Perihelion by Claudia Gray
  • Read Pdf The Miranda Conspiracy by James L. Cambias
  • epub download Animal Crossing by Kelsey Lewin
  • 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-11 22:53:00
Previous
Find pet by ID
Next
Update an existing pet
Built with