My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB The Rag Maiden - a new emotional and heartwarming family saga
  • TÉLÉCHARGER PDF EPUB No Mistake - Onyx Black Ops 2
  • téléchargement epub Lassassin royal deuxième époque Tome 2
  • TÉLÉCHARGER PDF EPUB blutband - Gedicht und Illustration von Vater und Sohn
  • TÉLÉCHARGEMENTS Tough Girls - Saison 1- Romance New Adult français
  • télécharger pdf Pour lIran
  • TÉLÉCHARGEMENTS Le Plancher de Jeannot - Jean Crampilh-Broucaret 1939-1972
  • téléchargement epub La rééducation de lécriture de lenfant et de ladolescent - Pratique de la graph
  • Lire en ligne Sur un malentendu
  • PDF For A Healthy Life 124 Recommendations From Experts téléchargement
  • TÉLÉCHARGEMENTS Dig Me No Grave. Illustrated
  • Télécharger Pdf La ronde des poupées
  • Pdf ePub Les amis de Frida au crochet par téléchargement ebook
  • Lecture en ligne Ebook Loup-Garou de la Forêt NocturneLes Crocs de lOmbre Omégaverse Garçon-X-Gar
  • TÉLÉCHARGEMENTS Winterzauber - Geschichten für die Weihnachtszeit
  • TÉLÉCHARGER PDF EPUB The idea of you
  • téléchargement epub Whispers of Mount Arden
  • Pdf ePub La géographie et quelques explorateurs - Et autres ARTICLES par Joseph Conrad Michel Desf
  • TÉLÉCHARGER PDF EPUB La méthode simple pour en finir avec la cigarette - Arrêter de fumer en fait
  • TÉLÉCHARGEMENTS Cardinal Sins - Omnibus 1
  • TÉLÉCHARGER PDF EPUB Les récits de lombre - Et autres poèmes
  • PDF Kindle The Jungle Book par Rudyard Kipling
  • PDF Eiscafé Cortina - immer prima - Vom Innenleben eines Cafés in Frankfurt am Main-Bockenheim par
  • PDF Rédalga téléchargement
  • Kindle Partiellement nuageux téléchargement
  • Pdf ePub Connaissance illimitée - Découvrir ses intelligences déjouer lautosabotage pratiquer la
  • TÉLÉCHARGER PDF EPUB Vivre avec Picasso
  • PDF Kindle The Rockstar - Silver Spoon MC 5 par Loni Ree
  • Lecture en ligne Ebook Désolation
  • Télécharger Pdf Data Science Concepts Strategies and Applications
  • PDF Danger Street par Tom King Jorge Fornés Dave Stewart Jérémy Manesse
  • Pdf ePub Taiji Quan - Philosophie du mouvement par Lou Yan téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Inconsolable
  • télécharger pdf Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His In
  • TÉLÉCHARGER PDF EPUB Le jour et lheure
  • Télécharger PDF Funeste Etincelle - Tome 1 LOrdre des Sicares
  • Kindle Nos étoiles contraires téléchargement
  • PDF The Colour of Love par Saskia Woodhill
  • PDF Fahrenheit 451 Ray Bradbury - Cahier daccompagnement à la lecture de loeuvre intégrale LLCER a
  • télécharger pdf Vienne
  • téléchargement epub The Business of Life - Answers to 101 Tough Questions
  • Lire en ligne Kanji Kana - Index alphabétique des 14 000 mots français simples ou composés expre
  • Lecture en ligne Ebook Le mesnevi - 150 contes soufis
  • TÉLÉCHARGER PDF EPUB Utopie Tome 3
  • PDF Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle déterminan
  • téléchargement epub The Interview Masters Customer Service Manager - The Interview Masters
  • Télécharger Pdf Que notre joie demeure
  • TÉLÉCHARGER PDF EPUB Meeting with my Mate - Monster Erotica Short Stories
  • Lire en ligne Altitude
  • téléchargement pdf Les enfants traumatisés par les conflits de guerre
  • 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 03:54:10
Previous
Find pet by ID
Next
Update an existing pet
Built with