My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Good Love - The Ballinger Sisters 3 par Niobia Bryant
  • Télécharger Pdf Civil War Tome 1
  • téléchargement epub Sauvage
  • télécharger pdf Le jour et lheure
  • Lecture en ligne Ebook Ender - Eye Candy Ink Second Generation 5
  • Kindle Part Of His Royal World téléchargement
  • PDF Préliminaires pour un verger futur - Nouvelles par Karim Kattan
  • TÉLÉCHARGER PDF EPUB Midnight Kisses - Escort Romance Series 1
  • PDF La classe de neige téléchargement
  • Télécharger PDF Jai tué - Suivi de Jai saigné
  • PDF Kindle Les sept morts dEvelyn Hardcastle par Stuart Turton
  • TÉLÉCHARGEMENTS Seguidor Renunciar a mí mismo y seguir a Jesús para vivir el discipulado radical y l
  • PDF Kindle Miracles of a Soul - The Nine Spiritual Gifts 5 par Constance Santego
  • Lecture en ligne Ebook Nuit
  • Lire en ligne Que notre joie demeure
  • TÉLÉCHARGEMENTS Notre faux ami lAmérique - Pour une alliance avec la Russie
  • Pdf ePub Salina - Les trois exils par Laurent Gaudé téléchargement ebook
  • Kindle More than words - Une Love Story téléchargement
  • téléchargement pdf Essential Gut Health for Women Over 50
  • télécharger pdf La Guardiana del Tiempo Novela Romántica Picante
  • téléchargement pdf Le Clan des Salamandres Tome 1
  • téléchargement pdf Leinwandpoesie - Wintermomente
  • Télécharger Pdf Man in Uniform - Give me a Love Trope
  • Lecture en ligne Ebook No Mistake - Onyx Black Ops 2
  • Lecture en ligne Ebook Die Hüter von Ceanlocheigh
  • Lire en ligne The Curse of Argendarria
  • PDF Kindle The Rise of Hoka A Journey Through Innovation and Performance par Ahmed Shaaban
  • Télécharger Pdf Histoire des galeries dart du XIXe siècle à nos jours
  • TÉLÉCHARGEMENTS The Punisher Lintégrale
  • Pdf ePub Huhito Fables Vol.19 - Fables 19 par téléchargement ebook
  • Lire en ligne Le Club des cochons
  • PDF The Mail Order Brides Challenge par Susan Hart
  • téléchargement pdf Ma première tablette dactivités - Développe tes capacités écrire compter et bie
  • Lecture en ligne Ebook Summer with the Single Dad - The Single Dads of San Camanez The Brew Brothers
  • PDF The Secrets of Sableheart Forest Part 1 - The Sableheart Forest Series 1 téléchargement
  • Lecture en ligne Ebook Beast The Weirdest Fairy Tale Ever
  • Télécharger Pdf Je leur offre mon corps Nouvelle érotique MFM pour adultes
  • Pdf ePub The Zone A Short Story par Taylor Dye téléchargement ebook
  • PDF Kindle Breaking the Ice par Nina Loren
  • télécharger pdf Un lama pour Noël
  • télécharger pdf Les favorites de Charles VII
  • Télécharger Pdf Mistletoe Magic
  • PDF Kindle Sin Too - Sin 2 par S.J. Tilly
  • TÉLÉCHARGEMENTS The Players Obsession - Maine Megalodons Football Series 2
  • TÉLÉCHARGER PDF EPUB Wolf Unleashed - Guardian Wolves 3
  • PDF Kindle The Reporter Lu-ni - Love in turbulent times 2019 - 2064 par Fritz Reichert
  • Télécharger PDF Bonds of the Wolf - The Wild Hunt Legacy 7
  • TÉLÉCHARGER PDF EPUB K-Pop - Avec 200 stikers
  • Lire en ligne Gruco Crime Family The Light Side - Gruco Crime Family
  • TÉLÉCHARGEMENTS Baby Mama
  • 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:14:20
Previous
Find pet by ID
Next
Update an existing pet
Built with