My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Marchetti Tarot by Ciro Marchetti on Iphone New Format
  • Online Read Ebook David Hamilton Twenty Five Years of an Artist by David Hamilton
  • DOWNLOADS Mastering Quantum Mechanics Essentials Theory and Applications by Barton Zwiebach
  • Online Read Ebook We Refuse A Forceful History of Black Resistance by Kellie Carter Jackson
  • Read Pdf First Love Guiding Teens through Relationships and Heartbreak by Lisa A. Phillips
  • The Soros Agenda by Rachel Ehrenfeld on Iphone New Format
  • epub download The Hundredth Voice by Caitlin Like
  • epub download The Unfinished Harauld Hughes by Richard Ayoade
  • See You in My 19th Life Vol. 5 by Lee Hye on Ipad
  • PDF DOWNLOAD Still Life with Remorse by Maira Kalman on Iphone
  • epub download The Serpent and the Wings of Night by Carissa Broadbent
  • Download PDF Spectacular A Caraval Holiday Novella by Stephanie Garber Rosie Thorns
  • PDF Kindle Insight Guides Iceland Travel Guide with Free eBook by Insight Guides
  • DOWNLOADS Dodge and Burn by Ellen Crosby
  • Read Pdf DAREDEVIL MODERN ERA EPIC COLLECTION KING OF HELLS KITCHEN by David Mack Brian Michael B
  • DOWNLOAD PDF EPUB Beyond Stoicism A Guide to the Good Life with Stoics Skeptics Epicureans and
  • download pdf The Skin and Its Girl A Novel by Sarah Cypher
  • Read Pdf ULTIMATES BY DENIZ CAMP VOL. 1 FIX THE WORLD by DENIZ CAMP Jonathan Hickman Juan Friger
  • PDF Download Color Third Edition A workshop for artists and designers by David Hornung
  • Online Read Ebook Confessions A Novel by Catherine Airey
  • Overgeared Vol. 4 by Team Team Argo Monohumbug on Iphone New Format
  • epub download The Secret Girl Book One of The Lonely Raven Trilogy by Erika Fair
  • Download PDF Our Countrys Presidents A Complete Encyclopedia of the U.S. Presidency 2024 Edition by
  • Read online Death by Boomers How the Worst Generation Destroyed the Planet but First a Child by Tim
  • Read Pdf The Explosive Child Sixth Edition A New Approach for Understanding and Parenting Easily
  • DOWNLOAD PDF EPUB Inside Bridgerton by Shonda Rhimes Betsy Beers
  • epub download Playground by Aron Beauregard
  • PDF DOWNLOAD In the Absence of Men by Philippe Besson Frank Wynne on Iphone
  • PDF Kindle The Rainbow Fish Bilibri - Eng Korean PB by Marcus Pfister
  • Download Pdf Study for Obedience by Sarah Bernstein
  • Online Read Ebook Artificial Condition The Murderbot Diaries by Martha Wells
  • Read online Burma Sahib A Novel by Paul Theroux
  • PDF The Doomsday Trail by Peter J. Murray
  • PDF EPUB Download Heartstopper Volume 3 by Alice Oseman Full Book
  • DOWNLOAD PDF EPUB Ruthless Creatures A Queens and Monsters Novel by J.T. Geissinger
  • pdf download La armadura de la luz The Armor of Light by Ken Follett
  • Download PDF The Village of Eight Graves by
  • PDF EPUB Download Dark Lord The Rise of Darth Vader Star Wars by James Luceno Full Book
  • DOWNLOAD PDF EPUB Morphology A Distributed Morphology Introduction by Jeffrey P. Punske
  • PDF EPUB Download Sapiens A Brief History of Humankind by Yuval Noah Harari Full Book
  • epub download The Winner Effect The Neuroscience of Success and Failure by Ian H. Robertson
  • Download Pdf CompTIA Data Study Guide Exam DA0-001 by Mike Chapple Sharif Nijim
  • PDF Kindle A Dark and Drowning Tide A Novel by Allison Saft
  • PDF The Unrealizable Towards a Politics of Ontology by Giorgio Agamben Alberto Toscano
  • PDF Download ASAP by Axie Oh
  • PDF Download The Poison Path Herbal Baneful Herbs Medicinal Nightshades and Ritual Entheogens by
  • PDF EPUB Download Superman The Definitive History by Edward Gross Robert Greenberger Full Book
  • PDF EPUB Download Notes on Shapeshifting by Gabi Abrão Full Book
  • Pdf ePub Always My Savage by Linda Eggert download ebook
  • Read Pdf Bake With Brooki by Brooke Bellamy
  • 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-03 17:56:45
Previous
Find pet by ID
Next
Update an existing pet
Built with