My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Le destin frappe à la porte
  • télécharger pdf Objectif CRPE 2023 - Français - La leçon - épreuve orale dadmission Ebook PDF
  • Télécharger Pdf Isabellas Desires - Dirty Fairy Tales 3
  • téléchargement epub Steve Jobs The Visionary Innovator of Silicon Valley
  • PDF La chanteuse de Nan Clarks Lane téléchargement
  • PDF Kindle La bible des granny squares - de 110 motifs et formes au crochet par Hiroko Aono-Billso
  • Télécharger PDF The One Time He Shared Me
  • TÉLÉCHARGEMENTS Une étrange défaite - Sur le consentement à lécrasement de Gaza
  • téléchargement pdf His Curse - Bound Beyond Blood 4
  • TÉLÉCHARGER PDF EPUB Crescent City Tome 2
  • téléchargement epub Lécole des ombres - Fantasy young adult
  • Télécharger Pdf The Legacy of Bata The Journey of a Footwear Empire
  • Lecture en ligne Ebook Hunted Claimed By The Sasquatch Monster Erotica Romance - Her Monster Mate R
  • PDF La formation technique et professionnelle en France - Années 1820 - 1980 téléchargement
  • PDF Mes Génies Tome 2 téléchargement
  • Télécharger Pdf Mistletoe Miracle - Beneath the Mistletoe
  • PDF His Curvy Beauty Books 7-9 - Curvy Collections 3 téléchargement
  • PDF Lorsque jétais une oeuvre dart par Eric-Emmanuel Schmitt
  • télécharger pdf Thailand Redlight - Bangkok Paradise Sin
  • téléchargement epub Sérusier - Denis correspondance - De la Définition du Néo-traditionnisme à lABC
  • Kindle 200 TOEIC - Listening reading téléchargement
  • Pdf ePub Esqueletos no Armário - Memórias do Filho de um Pastor.- 2º. Edição. Domingo González Jr.
  • PDF Marie Latastes Aufzeichnungen von den Kontakten die sie mit Jesus hatte sind immer aktuell. G
  • PDF Kindle Au soir dAlexandrie par Alaa El Aswany Gilles Gauthier
  • PDF Kindle Thomas Hardy The Complete Novels - Far From The Madding Crowd The Return of the Native
  • PDF Laventure des statistiques en sciences humaines par Andy Field Nicolas Verger Nicholas Brown
  • PDF Kindle Exploring Ancient China The Ancient Worlds Just For Kids par Sarah Michaels
  • PDF Le grand guide Major Mouvement pour soigner vos douleurs par Major Mouvement
  • téléchargement epub Le droit des comités sociaux et économiques et des comités de groupe - Commissi
  • télécharger pdf De bruit de fureur Tome 1
  • TÉLÉCHARGEMENTS Le quai de Ouistreham
  • TÉLÉCHARGEMENTS The House Witch and When The Cat Spells War - The perfect cosy fantasy romance for l
  • PDF The Story of the Liberty Bell History Just For Kids par Sarah Michaels
  • TÉLÉCHARGER PDF EPUB Schicksal eines siebenbürgisch-sächsischen Dorfes - Ein zu Beginn des 13. Jh.
  • TÉLÉCHARGEMENTS Alexandre Milliardère le dernier homme
  • Lire en ligne Schrift-Art - Kurzgeschichten
  • Lire en ligne A Ceo For Christmas - An Unexpected Christmas Baby The Daycare Chronicles The Baby
  • Télécharger PDF Stärke deinen Reichtum Die finanzielle Zukunft selbst in die Hand nehmen indem du d
  • télécharger pdf Sangs Eternels Forever Lintégrale 3 tomes - Saga bit lit Coffret 2 Univers Sangs Et
  • Télécharger Pdf His Retribution - Bound Beyond Blood 2
  • PDF Cocottes - 100 recettes de plats mijotés avec Le Creuset par Julie Soucail
  • Lire en ligne La vérité sur Connor Au piège du doute
  • télécharger pdf Ton emprise mon destin
  • téléchargement epub Mr. December - The Calendar Heroes 2
  • PDF Marie Latastes Aufzeichnungen von den Kontakten die sie mit Jesus hatte sind immer aktuell. G
  • télécharger pdf Legacy Tome 3
  • PDF Bleus sont les étés - Suivi de Le Coeur va où vont les rivières téléchargement
  • Pdf ePub Lord Baltimore Intégrale volume 1 par Mike Mignola Christopher Golden Ben Stenbeck téléc
  • TÉLÉCHARGER PDF EPUB Le Petit Larousse Cuisine facile - La référence de la cuisine au quotidien
  • Lecture en ligne Ebook Les talibans face à lopium
  • 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-12 23:48:35
Previous
Find pet by ID
Next
Update an existing pet
Built with