My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Mobi ROM LA ETAPA ORIGINAL MARVEL LIMITED EDITION - Varios autores descargar ebook grati
  • ATLAS DE DERMATOLOGIA EN PEQUEÑOS ANIMALES ePub gratis
  • VERA edición en portugués leer pdf
  • epub descargar LOS HUNDIDOS Y LOS SALVADOS TRILOGIA DE AUSCHWITZ 3
  • LA ROSE ÉCARLATE - MISSIONS T10 edición en francés leer epub gratis
  • epub descargar GLADIADORES
  • NINA PEANUT 1. NINA PEANUT ES LO MÁS leer pdf
  • DESPIERTA leer epub gratis
  • OVERNIGHT DAN RICHARDS ePub gratis
  • EL SEÑOR DE LAS MOSCAS leer epub WILLIAM GOLDING
  • Descargar PDF EPUB ALAS DE SANGRE EMPÍREO 1 EDICIÓN COLECCIONISTA ENRIQUECIDA Y LIMITADA
  • PDF LA VIDA PENSADA descargar gratis
  • PEQUEÑOS GESTOS GRAN IMPACTO leer pdf
  • LAS MUJERES WEYWARD ePub gratis
  • LA TIRANÍA DE LA MENTIRA leer pdf
  • ePub ORDENA TUS EMOCIONES descargar gratis
  • pdf descargar EL OLVIDO MAS DULCE
  • VAMPIRE ROYALS 2. EL PODER DE LA REINA leer el libro
  • NEON GENESIS EVANGELION EDICION COLECCIONISTA 7 leer el libro pdf
  • PDF PARAISO INHABITADO descargar gratis
  • EL HOBBIT CATALAN leer el libro pdf
  • LOS MONOS NO HACEN PREGUNTAS leer epub NYDIA DEL REY
  • PDF LA APERTURA ITALIANA descargar gratis
  • ROMPE TUS LÍMITES leer el libro
  • Descargar pdf DE PUENTES POR ESPAÑA
  • MÁS MOVIMIENTO MENOS SUFRIMIENTO ALEIX GUSART TRUJILLO ePub gratis
  • PETALOS DE PAPEL EDICIÓN ESPECIAL LIMITADA CON CONTENIDO EXTRA Y CANTOS TINTADOS leer epub gratis
  • Descargar PDF UN CHEEDAR PARA MORIRSE COZY MYSTERY
  • ANHELOS EN LA OSCURIDAD LOS INMORTALES DE LA OSCURIDAD IV leer el libro
  • HARU CADA DIA ES UNA VIDA ENTERA FLAVIA COMPANY I NAVAU ePub gratis
  • PACK HEARTSTOPPER 1 2024 STICKERS ALICE OSEMAN ePub gratis
  • Kindle EL CAFE FRÍO LA CERVEZA CALIENTE descargar gratis
  • PDF LAS CASAS QUE ME HABITAN descargar gratis
  • Kindle LA SAGA DE LA NUIT T3 LESPRIT DÉTERNITÉ edición en francés descargar gratis
  • 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 23:58:15
Previous
Find pet by ID
Next
Update an existing pet
Built with