My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB GAIA NOVA - Paradies 2.0
  • PDF Kindle Izera Terre des Dieux - Le Traître des Anges par Al Nova
  • téléchargement epub La vie heureuse
  • PDF La Première Vie de Noland Isbeau téléchargement
  • Pdf ePub See no Indian Hear no Indian Dont Speak about the Indian Writing Beyond the i Indian
  • Télécharger Pdf V13 - Chronique judiciaire
  • PDF Le kit de lapprenti mangaka - Tout pour créer ses premiers personnages mangas - Avec 10 feuille
  • TÉLÉCHARGEMENTS Michel Foucault - Histoire de folie
  • TÉLÉCHARGEMENTS Emet
  • Lire en ligne Au coeur du 7 octobre - Témoignages
  • téléchargement epub Gamification in Education Leveling Up Learning Experiences
  • PDF Kindle Bleus sont les étés - Suivi de Le Coeur va où vont les rivières par Christian Signol
  • Lire en ligne Confessions inachevées
  • Kindle Last Customer A Shoe Store Fantasy téléchargement
  • Pdf ePub Die Zauberin des Schattendorns - A Feiticeira de Shadowthorn 1 par Antonio Carlos Pinto t
  • PDF Kindle La Bible racontée aux enfants en 365 histoires par Gustavo Mazali Nathalie Surre
  • PDF Quatre saisons de fiançailles Tome 2 par Nora Roberts Cécile Ardilly
  • PDF Kindle Fabricant de larmes Tomes 1 et 2 par Erin Doom Claire Bertholet
  • téléchargement epub Intimate Surrender
  • Pdf ePub How to Hire and Manage Remote Employees par Danny Breadmaker téléchargement ebook
  • Pdf ePub Full Moon Games The Complete Trilogy par Lindsey R. Loucks téléchargement ebook
  • Télécharger Pdf Feel-Good Productivity - How to Do More of What Matters to You
  • TÉLÉCHARGER PDF EPUB Magie financière magie dabondance
  • téléchargement pdf Les racines de la diaspora - Gorée les esclaves y pleurent encore
  • téléchargement epub Ultramarins
  • PDF Peeling Back the Layers of Trauma The Caterpillar Stage - Butterfly Energy 1 par
  • télécharger pdf Dig Me No Grave. Illustrated
  • Télécharger PDF The Shadowed Foe Deaths Dragon Book 3 - Deaths Dragon 3
  • Lire en ligne Les racines de la diaspora - Gorée les esclaves y pleurent encore
  • PDF Kindle Strive - 8 Steps to Find Your Awesome par Venus Williams
  • Lire en ligne Anne Girl - Midwestern Bookish Belles 1
  • téléchargement epub The Trainwreck - Beguiling a Billionaire 6
  • Pdf ePub Hereafter Lies R.I.P. - HEREAFTER LIES 1 par téléchargement ebook
  • téléchargement epub Le pansement Schubert
  • Kindle La légende Alpine téléchargement
  • PDF Huhito Fables Vol.4 - Fables 4 téléchargement
  • TÉLÉCHARGEMENTS Dithmarscher Jakobsweg - Jakobspilgern mit Hund auf der Westküstenroute der Via Jutl
  • TÉLÉCHARGEMENTS La face cachée du Dalaï-Lama
  • Télécharger PDF Sueño Verde
  • Pdf ePub Animal Farm par George Orwell téléchargement ebook
  • Kindle B2 Sprachbausteine B2 Schreiben von Forumsbeiträgen DTB BSK B2 - B2 Deutsch-Test für den B
  • PDF 30 cartes postales Mon Voisin Totoro par Studio Ghibli
  • téléchargement pdf Gâteau au thé dans le jardin enchanté
  • Pdf ePub Kilomètre zéro - Le chemin du bonheur par Maud Ankaoua téléchargement ebook
  • téléchargement pdf La patrie et la France - La francophilie finlandaise 1880-1914. Volume II
  • téléchargement epub The Paris MBA
  • télécharger pdf Journal dun naufragé - 100 jours sur une île déserte
  • PDF Kindle Les survivants Tome 6 par Shana Galen Lionel Evrard
  • PDF Kindle Civil War Tome 1 par Mark Millar Steve McNiven Morry Hollowell Khaled Tadil
  • Télécharger PDF Seek - How Curiosity Can Transform Your Life and Change the World
  • 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 01:32:45
Previous
Find pet by ID
Next
Update an existing pet
Built with