My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Read My Eyes
  • TÉLÉCHARGER PDF EPUB As Aventuras de Huckleberry Finn
  • PDF Capturé par le roi des fées par Dana Blue
  • Lecture en ligne Ebook Les Nombrils Tome 1
  • Pdf ePub Kheira à contre-pied par Kheira Hamraoui Dominique Rouch téléchargement ebook
  • Pdf ePub Climbing the Ranks 1 - Climbing the Ranks 1 par Tao Wong téléchargement ebook
  • téléchargement pdf Sombrer - Le Retour de la siréne 2
  • Pdf ePub Legacy Tome 3 par McKenzie Hunter téléchargement ebook
  • TÉLÉCHARGER PDF EPUB La Chine depuis 1949
  • Pdf ePub GONE INTO the NIGHT - Hartz Island Mystery 4 par Tracie Ingersoll Loy téléchargement eboo
  • Lire en ligne AI in Self-Help Navigating Risks and Cultivating Mindfulness
  • télécharger pdf Dernières nouvelles du cerveau - Les biais de la vie ordinaire
  • Télécharger Pdf Rain and Other South Sea Stories
  • Kindle Exploring Ancient China The Ancient Worlds Just For Kids téléchargement
  • Lire en ligne Tuesday May
  • Pdf ePub Permis de culture avec Whats up world par César Roussel téléchargement ebook
  • PDF Les survivants Tome 6 téléchargement
  • Kindle Witch and God Tome 3 téléchargement
  • téléchargement pdf Beg Me Please Deluxe Edition - Queens Knights 1
  • téléchargement epub Die wichtigsten Instrumente der strategischen Unternehmensplanung - Grundlagen f
  • Kindle Au soir dAlexandrie téléchargement
  • PDF Empower Your Self-Esteem Nurture Your Self-Worth Build Emotional Resilience and Cultivate Las
  • TÉLÉCHARGER PDF EPUB Borderline Tome 1
  • télécharger pdf Crimes délits et vies brisées - Les combats dune avocate éprise de justice
  • Télécharger Pdf Invincible Cheat System in Isekai - Invincible Cheat System in Isekai 5
  • téléchargement pdf From Jerk to Perk - The Me to We Reverse Harem Romances 3
  • TÉLÉCHARGEMENTS La mer de la tranquillité
  • téléchargement epub Fontenay-sous-Bois territoire décologie populaire
  • Lecture en ligne Ebook Sarah Bernhardt le rire incassable
  • TÉLÉCHARGER PDF EPUB Kingdom of Power - Kingdom of Fairytales 50
  • Lire en ligne La mythologie grecque - Un poster inclus
  • Télécharger Pdf Ein Tausend Li Bücher 4-6 - Ein Tausend Li Sammelband 2
  • TÉLÉCHARGER PDF EPUB Extinctions - Intégrale saison 1
  • Télécharger PDF Le peuple de lair Tome 1
  • Télécharger PDF Quand on eut mangé le dernier chien
  • Télécharger PDF The Paris MBA
  • téléchargement pdf Killian Remus Sheriff Series Book 2 - Sheriff Series 2
  • Télécharger Pdf Jacques Castermane ou la sagesse du corps - Zazen et enseignements
  • Lecture en ligne Ebook Demandez-leur la lune
  • télécharger pdf The Legend of Vanquishing Immortals and Demons - The Legend of Vanquishing Immortal
  • téléchargement pdf Money Mindset Exploring the Psychology of Wealth
  • télécharger pdf Terre Air Feu et Eau - 75 techniques pour pratiquer avec les éléments
  • Pdf ePub One Kiss to Desire - Blackwood Legacy 1 par Grace Callaway téléchargement ebook
  • PDF Kindle Erlebnisse in Ländern und Orten die selten bereist werden par Karl Schumacher
  • Télécharger PDF Le premier roi du monde - Lépopée de Gilgamesh
  • Télécharger Pdf A filha do Marquês - As filhas 1
  • téléchargement pdf What You Wish For - Fable Notch 6
  • Télécharger PDF La carte des différences culturelles - 8 clés pour travailler à linternational
  • Lecture en ligne Ebook A Heart to Remember - Hearts Intent 8
  • Télécharger Pdf Le maître du passé
  • 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-13 22:53:30
Previous
Find pet by ID
Next
Update an existing pet
Built with