My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Social Media Management par
  • Télécharger PDF Sueño Verde
  • téléchargement epub Forever Boy - The Forever Saga 1
  • TÉLÉCHARGER PDF EPUB O Guia Completo Da Renda Passiva - Coleção Vida Equilibrada 11
  • PDF Kindle 400 Tipps Für Die Persönliche Entwicklung par PAYİDAR BİLGE
  • Pdf ePub Jouer nest pas gagner par Laura Emann téléchargement ebook
  • Télécharger Pdf LEau - Le Refuge des Héritiers 2
  • PDF Kindle La bible des Granny squares - de 110 motifs et formes au crochet par Hiroko Aono-Billso
  • PDF Kindle Clément chez les calmistes par Michel Besnier
  • PDF The Ovenlight Saga Baking Dough - Part 1 - The Ovenlight Saga 1 par
  • TÉLÉCHARGEMENTS Le code de la route pour les nuls
  • Lire en ligne Halte au manager-bashing - Réinventer lexpérience manager
  • TÉLÉCHARGER PDF EPUB Ava Will - Éveiller Drive 1
  • TÉLÉCHARGEMENTS Blossom Rhymes Flower Poems for Kids
  • téléchargement epub Rhodes on the ice - Boston Bay Vikings 14
  • PDF Journal dun naufragé - 100 jours sur une île déserte par Margot Maillac
  • PDF Conard County Killer In The Storm téléchargement
  • Télécharger PDF Paroles dor - Kitâb al-Ibrîz
  • téléchargement epub Le roi de la guerre et du sang - ADRIAN x ISOLDE TOME 1
  • PDF Le kit de lapprenti mangaka - Tout pour créer ses premiers personnages mangas - Avec 10 feuille
  • PDF Broken téléchargement
  • téléchargement pdf Edito A2 - Edition 2022 - Cahier dactivités didierfle.app SANTILLANA
  • téléchargement pdf World Of Digital Marketing
  • téléchargement epub Marie Latastes Aufzeichnungen von den Kontakten die sie mit Jesus hatte sind i
  • Télécharger Pdf Amérique latine les nouveaux conflits
  • PDF Kindle Games - Lintégrale par Kate Owyn
  • Pdf ePub Assoiffés Tome 5 par Tracy Wolff Aylin Manço téléchargement ebook
  • Lecture en ligne Ebook Mélusine reloaded
  • TÉLÉCHARGEMENTS Le meilleur est Avenir
  • PDF Kindle Oscar Pill Tome 1 par Eli Anderson
  • PDF Kindle Archipels par Hélène Gaudy
  • TÉLÉCHARGEMENTS Crimes délits et vies brisées - Les combats dune avocate éprise de justice
  • TÉLÉCHARGER PDF EPUB Les prélats de Faneas Tome 3
  • Kindle Unlocking Profit Potential Mastering Time-Released CPA Strategies téléchargement
  • Lire en ligne Le rire philosophe
  • Pdf ePub Permis de culture avec Whats up world par César Roussel téléchargement ebook
  • Télécharger PDF A River of Golden Bones - Book One of the Golden Court
  • Kindle Homo chaoticus - Révolution dans lévolution téléchargement
  • télécharger pdf Bound by Duty Mafia Romance
  • PDF The Raptor of the Highlands - The Sylvan Chronicles 3 téléchargement
  • téléchargement epub Unfriended Retold A Friends-to-Lovers Romance - Love in New Highland 4
  • PDF Kindle Traité pratique de morphologie et palpation anatomique par Michel Dufour Santiago Del V
  • Télécharger Pdf Make a beautiful sound
  • PDF La SCI pour les nuls téléchargement
  • téléchargement epub Creating Your Best Life A Self-Help Blueprint
  • Pdf ePub LEclair de génie Café par Christophe Adam Laurent Fau Audrey Cosson Leslie Gogois téléc
  • Lire en ligne Vienne
  • télécharger pdf La vie heureuse
  • TÉLÉCHARGER PDF EPUB Homo chaoticus - Révolution dans lévolution
  • TÉLÉCHARGEMENTS La paie ça sapprend
  • 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 02:29:45
Previous
Find pet by ID
Next
Update an existing pet
Built with