My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGEMENTS Moi Tituba sorcière noire de Salem
  • Lire en ligne Salina - Les trois exils
  • Télécharger PDF Fall From Grace - The Fall Series 1
  • TÉLÉCHARGER PDF EPUB Comment les grands projets se réalisent - Les éléments inattendus qui jouent
  • téléchargement pdf Vannali - The Lissae Series 7
  • Télécharger PDF Contes italiens - Edition bilingue français-italien
  • téléchargement pdf Chasing Ava - The Bachelors of Shell Cove 1
  • TÉLÉCHARGER PDF EPUB Hygiène de lassassin
  • PDF Kindle Le chemin des estives par Charles Wright
  • PDF La bible du Tage Mage par Franck Attelan
  • TÉLÉCHARGER PDF EPUB Le Clan des Salamandres Tome 1
  • Lecture en ligne Ebook Star Wars - Stickers
  • téléchargement epub Entre amis
  • Lire en ligne Mon coeur a déménagé
  • téléchargement epub A la buvette du pont
  • TÉLÉCHARGER PDF EPUB Love On The Brain
  • Télécharger PDF The Sacrifice Duet - The Sacrifice
  • téléchargement pdf Le silence de la mer
  • Kindle Christmas Stories Omnibus téléchargement
  • PDF Kindle La Canne de M. de Balzac par Delphine de Girardin
  • TÉLÉCHARGER PDF EPUB La Française doit voter - Les combats de Louise Weiss
  • Pdf ePub Creating Love par Whitney Gayle téléchargement ebook
  • Lecture en ligne Ebook Rückkehr im Nachtzug
  • Kindle Fated Mates - The Real Shifters of Oregon 3 téléchargement
  • Lire en ligne The Secrets of Sableheart Forest Part 1 - The Sableheart Forest Series 1
  • TÉLÉCHARGER PDF EPUB Protége-Moi Vol. 3 - Protège-Moi 3
  • Télécharger PDF Reina del cielo
  • télécharger pdf Hereafter Lies R.I.P. - HEREAFTER LIES 1
  • Lecture en ligne Ebook Lalimentation intuitive - Le grand livre
  • Pdf ePub Lhomme des Mille Détours par Agnès Martin-Lugand téléchargement ebook
  • téléchargement pdf Verity
  • PDF Le trésor de lîle au Crâne par Bastien Lebaudy Julien Alvarez Paul Streto
  • TÉLÉCHARGEMENTS Déco de chambres denfants en feutrine - 4 univers féérique cosmique cocoon de dou
  • téléchargement epub Discours de la servitude intellectuelle - De la soumission intellectuelle au dén
  • PDF Le but - Un processus de progrès permanent par Eliyahu M. Goldratt Jeff Cox
  • Kindle Mon manuel de magnétiseur - Apprenez lart de soigner avec vos mains téléchargement
  • Lecture en ligne Ebook Et si la maladie nétait pas un hasard
  • PDF Kindle The Horus Heresy Collection Tome 1 par Dan Abnett Graham McNeill Ben Counter
  • Lire en ligne Fabricant de larmes Tomes 1 et 2
  • téléchargement pdf The Nature Keepers - Into The Woods 1
  • PDF Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle déterminan
  • Lire en ligne Deutschland Dämmerung - Vom Ende einer Hochkultur
  • TÉLÉCHARGEMENTS The Punisher Lintégrale
  • PDF Petite Grande par Lauriane Chapeau
  • TÉLÉCHARGER PDF EPUB Jouer nest pas gagner
  • télécharger pdf Extinctions - Intégrale saison 1
  • Kindle Cured - Two imaginary boys téléchargement
  • Pdf ePub O Caminho Verdadeiro A Busca pela Verdade Bíblica - FICÇÃO E VERDADES BÍBLICAS 1 par Fláv
  • téléchargement epub The Year of Bold Beginnings A Guide to Setting and Achieving Your Goals
  • PDF Child Sacrifice par Claudius Brown
  • 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-16 02:42:55
Previous
Find pet by ID
Next
Update an existing pet
Built with