My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • ePub DEL DESORDEN AL ORDEN descargar gratis
  • Descargar ebook SERÁ TODO PARA MÍ Descarga Libros Gratis PDF - EPUB
  • OPEN UP 6 CB ANDALUCIA leer el libro pdf
  • Kindle EL PERRO QUE SEGUIA LAS ESTRELLAS descargar gratis
  • Descargar pdf EL REGRESO DE QUETZALCÓATL
  • Descargar pdf EL FURTIVO
  • ROMANCES Y CUERNOS REALES ePub gratis
  • Descargar ebook CAÍDA LIBRE Descarga Libros Gratis PDF - EPUB
  • ePub SHERLOCK HOLMES ANOTADO RELATOS PACK RELATOS I Y II descargar gratis
  • PDF APOCALIPSIS Z. LA IRA DE LOS JUSTOS descargar gratis
  • AQUELARRE DE HUESOS leer el libro
  • Descargar PDF EPUB AUXILIAR DE ARCHIVOS Y BIBLIOTECAS SUPUESTOS PRACTICOS
  • Pdf ePub Mobi EL COLOR DE LAS COSAS INVISIBLES EJEMPLAR FIRMADO POR LA AUTORA - ANDREA LONGARELA
  • Kindle MEMENTO PRÁCTICO PENAL 2025 descargar gratis
  • Descargar PDF MANUAL PARA DAMAS CAZAFORTUNAS
  • LOS JUEGOS DE LOS DIOSES EDICIÓN ESPECIAL LIMITADA leer pdf
  • pdf descargar LA ACADEMIA 1. OCASO
  • Descargar ebook MOMO Descarga Libros Gratis PDF - EPUB
  • PDF CONOCER EL BOSQUE descargar gratis
  • VEIL Nª 02 leer epub KOTTERI
  • UN LUGAR LLAMADO LIBERTAD CAMPAÑA BLACK FRIDAY leer el libro pdf
  • YO SOY ERIC ZIMMERMAN VOL. II leer epub MEGAN MAXWELL
  • BRUNO ET JEAN edición en francés leer el libro
  • PAREJAS MEJORES leer el libro pdf
  • Descargar ebook NO SOY YO ERES TÚ Descarga Libros Gratis PDF - EPUB
  • PDF LA EDAD ES UN NÚMERO. LA ACTITUD LO ES TODO descargar gratis
  • PDF O MESMO DE SEMPRE edición en portugués descargar gratis
  • pdf descargar LOS VERSOS DE PANDORA PACK TOMO I Y II
  • FUEGO AL MACHISMO MODERNO Júlia Salander ePub gratis
  • Pdf ePub Mobi NO HAY DIOS EN EL EDEN Nº 02 - YUMA ICHINOSE descargar ebook gratis
  • Descargar PDF Y ENTONCES TÚ
  • ADREÇA DESCONEGUDA ePub gratis
  • epub descargar UNA VIDA
  • PDF Kindle LA PÉRFIDA ALBIÓN descargar gratis
  • MERCURIUS leer epub 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-10 02:22:50
Previous
Find pet by ID
Next
Update an existing pet
Built with