My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lecture en ligne Ebook All I Want For Christmas - Cinderellas Billion-Dollar Christmas The Missing M
  • Pdf ePub Ohio - La Belle Rivière T01 par Fred Duval Brada téléchargement ebook
  • PDF Le baron perché téléchargement
  • Lire en ligne Tough Girls - Saison 1- Romance New Adult français
  • Lire en ligne Estudiante Sumisa y otras historias - Dominación y sumisión erótica 8
  • Kindle Owned - His Boss - Naughty Bimbos 2 téléchargement
  • téléchargement pdf Compendium de philosophie - Avec Thomas dAquin
  • TÉLÉCHARGEMENTS The Truth About Gracie
  • télécharger pdf Breaking Free Mastering Self-Transformation Embracing Growth and Healing from Wit
  • PDF Days of Erotica Volume 4 téléchargement
  • téléchargement epub De lHACCP à lISO 22000 - Management de la sécurité des aliments
  • TÉLÉCHARGEMENTS Fantastic Four lIntégrale Tome 4
  • téléchargement pdf Il Codice dellOrologiaio
  • Pdf ePub Les vies sauvées dAlexander Vielski par François Langlade téléchargement ebook
  • téléchargement epub Le français parlons-en
  • téléchargement epub Les soeurs Essex Tome 1 et 2
  • Kindle How to Raise Financially Intelligent Kids Staying Debt-Free or Becoming Capitalists - Financ
  • télécharger pdf Creuser
  • PDF Largo Winch Tome 24 téléchargement
  • PDF Kindle Million Dollar Death par A.Y. Caluen
  • PDF Lord Baltimore Intégrale volume 1 par Mike Mignola Christopher Golden Ben Stenbeck
  • téléchargement pdf Attachants adorables... mais parfois insupportables - Le guide pour comprendre
  • Lire en ligne Lécologisation du travail social - Les établissements sociaux à lépreuve du changemen
  • Télécharger PDF Loeuvre du serpent
  • Pdf ePub Le Secret de la souris T03 par Yuki Shiraishi téléchargement ebook
  • Lire en ligne No More Fairy Tales
  • Télécharger PDF Crónicas do Inesperado
  • TÉLÉCHARGEMENTS Vivre en accord avec soi
  • téléchargement epub La jeune fille aux silences
  • Kindle Valentine Een Buitenaardse Sciencefictionromantiek - Kolonie Feestdagen 5 téléchargement
  • Télécharger PDF Watchers - Tome 1
  • TÉLÉCHARGER PDF EPUB Sands and Sparrow
  • téléchargement epub Coco und Andy - Tipps für kleine Besseresser
  • Lecture en ligne Ebook Cured - Two imaginary boys
  • Kindle Se mouvoir et être ému - Lexpérience esthétique en architecture téléchargement
  • TÉLÉCHARGER PDF EPUB Découvrir Belle-Ile par le sentier côtier
  • Télécharger Pdf La symphonie du vivant - Comment lépigénétique va changer votre vie
  • Lecture en ligne Ebook Thomas Lelu No Rain No Flowers
  • Télécharger Pdf Winterzauber - Geschichten für die Weihnachtszeit
  • Télécharger Pdf Battle Royale Between Toys - Living Toy Universe 1
  • téléchargement pdf Mit der Gorch Fock übern Teich - Aus Logbüchern der Bordcrew 1962
  • Télécharger Pdf The Sheikhs Jewel - Sands of Passion 2
  • PDF Bleus sont les étés - Suivi de Le Coeur va où vont les rivières par Christian Signol
  • PDF Conan le barbare Lintégrale par John Marc DeMatteis Roy Thomas John Buscema Gil Kane Corinn
  • PDF Gray - Eye Candy Ink Second Generation 4 téléchargement
  • téléchargement epub Le Pain noir
  • télécharger pdf Wunderland - Où danse un peu du désastre et de la magie du monde
  • téléchargement pdf 1109 Cowboy Way
  • PDF Kindle Dibbouks par Irène Kaufer
  • PDF La petite menteuse par Pascale Robert-Diard
  • 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-09 22:28:25
Previous
Find pet by ID
Next
Update an existing pet
Built with