My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Pépé Malin - Tome 1 - Les trucs de Pépé Malin
  • télécharger pdf Simon Leys - Vivre la vérité et aimer les crapauds
  • Pdf ePub 6 nouvelles érotiques passionnantes du monde entier par Erika Svensson Camille Bech Alic
  • Pdf ePub Dingues de trail Tome 2 par Wingz téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Numagician Đánh Thức Phù Thủy Trí Nhớ Trong Bạn - Numagician 1
  • téléchargement epub Failles dans le marbre - Linfluence de lAntiquité grecque dans la musique
  • TÉLÉCHARGEMENTS Se libérer du connu
  • téléchargement pdf Huhito Fábulas-Versión española Vol.35 - Fábulas-Versión española 35
  • PDF Kindle Supernatural Agency - Ghost Reaper 3 par Jessica Samuels
  • Télécharger Pdf The Little Stars Wish
  • Pdf ePub Chiharu Shiota par téléchargement ebook
  • Lire en ligne La princesse des glaces
  • téléchargement pdf The Clusion Wars The Apocalyptic Clash Between Liberal Inclusion and Conservative
  • télécharger pdf Un alchimiste raconte
  • Télécharger Pdf Dead Calm - Arcane Souls World Grave Talker 3
  • Télécharger Pdf Le livre noir de Vladimir Poutine
  • PDF Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle déterminan
  • TÉLÉCHARGER PDF EPUB Attachants adorables... mais parfois insupportables - Le guide pour compren
  • Télécharger Pdf VThe Art of Effective Goal Setting for Self Improvement
  • télécharger pdf Médée
  • télécharger pdf Brumes à Mer La Mort du Tigre - Brumes à Mer 2
  • PDF Kindle Sweet sixteen par Annelise Heurtier
  • Lire en ligne The Sheikhs Jewel - Sands of Passion 2
  • TÉLÉCHARGER PDF EPUB Une bouteille dans la mer de Gaza
  • Lecture en ligne Ebook Le paradoxe ambulant - Essai choisis et préfacés par Alberto Manguel
  • Télécharger Pdf The Interview Masters Customer Service Manager - The Interview Masters
  • Lire en ligne Love Life
  • TÉLÉCHARGEMENTS EmpowerHER
  • Kindle Un chef dans ma cuisine avec Thermomix - 9 chefs revisitent les meilleures recettes Thermom
  • PDF Kindle Santé à vous de jouer par Michel Cymes Patrice Romedenne Philippe Sollier
  • Pdf ePub Ruines politiques par Albrecht Burkardt Jérôme Grévy téléchargement ebook
  • Pdf ePub Summer Came - Joy of Living par Erdal Turna téléchargement ebook
  • Télécharger PDF La sorpresa del Marqués - Los Caballeros 2
  • TÉLÉCHARGEMENTS Vittanos Willow - Megalodon Team 5
  • PDF Le mammouth et la fourmilière - Quel devenir pour lécole publique et ses professeurs par Evely
  • Pdf ePub Vivre avec Picasso par Françoise Gilot Carlton Lake téléchargement ebook
  • PDF Defeating Jihadist Terrorism par Jacques Baud Synthesized voice
  • téléchargement epub Winterzauber - Geschichten für die Weihnachtszeit
  • Kindle La classe de neige téléchargement
  • Télécharger Pdf Holiday Vibes - Over The Top Love 2
  • Télécharger PDF La belle de mai - Fabrique de révolutions
  • PDF Beyond my Wounds I Am Witness of Gods Power - Beyond my Wounds téléchargement
  • téléchargement pdf Marie Latastes Aufzeichnungen von den Kontakten die sie mit Jesus hatte sind im
  • PDF Der Preis der Freiheit - Für Immer par
  • Télécharger Pdf Embrace the Middle
  • téléchargement pdf The Violet Affect and Other Stories
  • Lire en ligne Maux-dits - Correspondances de guerre lasse
  • Lecture en ligne Ebook Seelen der Erde - Enya
  • télécharger pdf Business Strategy Understand What It Takes To Be Successful In Business
  • Télécharger Pdf The Brave Heart Sparrow
  • 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-07 21:33:40
Previous
Find pet by ID
Next
Update an existing pet
Built with