My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • CUMBRE VIEJA leer epub ALBERTO VAZQUEZ FIGUEROA
  • MI NOMBRE ES EMILIA DEL VALLE leer pdf
  • UN SILENCIO LLENO DE MURMULLOS leer epub GIOCONDA BELLI
  • EL VIAJE DE SHUNA EDICIÓN ESPECIAL ePub gratis
  • ePub LA ENCICLOPEDIA DE LOS SABORES VOL. 2 descargar gratis
  • epub descargar UN VIAJE ALUCINÓGENO
  • NO DISPONIBLE leer epub MADELINE GRAY
  • PDF Kindle FUE CULPA DE LA FISICA CUANTICA descargar gratis
  • SUFRIMIENTO Y CAMBIO EN PSICOTERAPIA leer pdf
  • EL CINE REPARADOR leer epub gratis
  • UM LANCE EM FALSO leer epub gratis
  • Descargar DEEP END Ali Hazelwood Gratis - EPUB PDF y MOBI
  • Kindle VIVIR CON SENTIDO descargar gratis
  • Kindle ALL ABOUT US NOW 3 ACTIVITY BOOK 3º PRIMARIA descargar gratis
  • epub descargar ANDY WARHOL
  • MUCHACHAS DE UNIFORME CHRISTA WINSLOE ePub gratis
  • Descargar EL DESCONTENTO DEMOCRÁTICO Michael J. Sandel Gratis - EPUB PDF y MOBI
  • FENÊTRE CLÉ leer pdf
  • EL CUCO DE CRISTAL leer epub gratis
  • Kindle HISTÓRIA DA FILOSOFIA E TEOLOGIA OCIDENTAL edición en portugués descargar gratis
  • STRANGE PICTURES leer epub gratis
  • pdf descargar DIARIO DE UN ASPIRANTE A SANTO
  • HEREDERA DE FUEGO SAGA TRONO DE CRISTAL 3 leer el libro
  • Descargar ebook LA GUERRA DE AUDREY Descarga Libros Gratis PDF - EPUB
  • Pdf ePub Mobi LIBÉRATE DE LA CODEPENDENCIA - MELODY BEATTIE descargar ebook gratis
  • ePub LA PÓLVORA Y LOS INOCENTES descargar gratis
  • ENSAYOS SOBRE FILOSOFÍA POLÍTICA Y OTROS ESCRITOS PÓSTUMOS leer epub PHILIPP MAINLANDER
  • PDF Kindle VIOLETA ED.LIMITADA A PRECIO ESPECIAL descargar gratis
  • MAGNOLIA PARKS leer epub JESSA HASTINGS
  • CÁRCEL DE MUJERES leer el libro
  • PDF Kindle BALI LOMBOK Y NUSA TENGGARA 2025 3ª ED. LONELY PLANET descargar gratis
  • Descargar pdf EL LIBRO DE SANACIÓN ZEN
  • EL FOTÓGRAFO DE AUSCHWITZ ePub gratis
  • Descargar PDF DOMBEY E HIJO
  • 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 04:03:01
Previous
Find pet by ID
Next
Update an existing pet
Built with