My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger Pdf Pack 3 pour 2 Azur - Décembre 2023
  • TÉLÉCHARGEMENTS Oh Santa
  • Pdf ePub Guide complet des contrôles médicaux par tranche dâge Prendre soin de sa santé par YVES S
  • Pdf ePub Espresso für die Hexe Heißer Fantasy-Liebesroman par Jasmin Meier téléchargement ebook
  • Lire en ligne La Belle Espérance Tome 2
  • TÉLÉCHARGER PDF EPUB Conan de Barbaar Tiende Deel - Conan de Barbaar 10
  • Pdf ePub In the Afterwards par téléchargement ebook
  • Télécharger PDF The Secluded Queen - Legacy of an Armored Queen 1
  • PDF La première histoire par Frédéric Gros
  • Pdf ePub Vallée dAoste par Petit Futé téléchargement ebook
  • PDF Constelaciones para niños La forma más divertida de aprender sobre las estrellas descubrir la
  • Pdf ePub Parlez anglais en 6 mois pas en 10 ans - La méthode anti-scolaire pour débloquer votre
  • PDF Bodacious Ursula and the Phone Call from Hell téléchargement
  • TÉLÉCHARGER PDF EPUB Unter Feuer Band 4 - Unter Feuer 4
  • Pdf ePub Lange de la nuit Némésis Tome 1 par Brent Weeks Jean-Claude Mallé téléchargement ebook
  • PDF Kindle Hanna The Job Quitter par Ina Zeneli
  • TÉLÉCHARGEMENTS La formation technique et professionnelle en France - Années 1820 - 1980
  • Télécharger Pdf Gustav Mahler
  • télécharger pdf Les fêtes avec toi
  • téléchargement pdf Los Caminos de Oshosi El Arquero Divino del Bosque
  • Télécharger Pdf Lord Baltimore Intégrale volume 1
  • Kindle Campus drivers Tome 1 téléchargement
  • Télécharger Pdf A ta mort ce sera à moi
  • téléchargement epub La gestion de portefeuille - Instruments stratégie et performance
  • téléchargement epub Colle et colorie Dinosaures - Avec plus de 100 stickers
  • téléchargement epub Satan is Targeting Mans Free Will - Bible Studies 17
  • Télécharger Pdf Zone base vie
  • Kindle Sequins à coller - Tableaux cosmiques téléchargement
  • Lire en ligne Tiny Actions Tremendous Impact A Comprehensive Guide to Habit Transformation and Fina
  • PDF Kindle La Canne de M. de Balzac par Delphine de Girardin
  • téléchargement epub Harley-Davidson - Une collection iconique
  • téléchargement epub Lîle du crâne
  • Pdf ePub Moi Tituba sorcière noire de Salem par Maryse Condé téléchargement ebook
  • TÉLÉCHARGEMENTS Heartstopper - Tome 5 - le roman graphique phénomène adapté sur Netflix
  • TÉLÉCHARGER PDF EPUB Bonjour les étoiles - Saynètes de Noël
  • PDF An Agent for Laurel - Pinkerton Matchmakers 20 par Lynn Donovan
  • téléchargement epub Microsoft Outlook
  • Télécharger Pdf Goddess Energy Liberate the Divine Feminine in You Radiate Magnetic Confidence and
  • téléchargement pdf Le pansement Schubert
  • télécharger pdf Un conservatisme à la carte en Russie
  • TÉLÉCHARGEMENTS Et si demain tout sinversait
  • PDF Les Immortelles Tome 3 téléchargement
  • téléchargement epub Unattainable - The Ben Libby Series 2
  • télécharger pdf La Ferveur
  • télécharger pdf The Shadowed Foe Deaths Dragon Book 3 - Deaths Dragon 3
  • PDF Animaux à laquarelle - 20 projets pour apprendre et progresser téléchargement
  • TÉLÉCHARGER PDF EPUB Inconsolable
  • PDF Chair Yoga For Seniors Over 60 par Patrick Gorsky
  • téléchargement pdf The Jungle Book
  • télécharger pdf Le plâtrier siffleur
  • 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-10 22:38:30
Previous
Find pet by ID
Next
Update an existing pet
Built with