My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Kindle RUNA descargar gratis
  • HISTORIAS DE JAPÓN leer pdf
  • Descargar BRENNER Y STEVENS. FARMACOLOGÍA BÁSICA 6ª ED. STEVENS Gratis - EPUB PDF y MOBI
  • THE EVIN PRISON BAKERS CLUB leer epub SEPIDEH GHOLIAN
  • Descargar ebook LA PIEDAD DE LOS DIOSES LA GUERRA DE LOS CAUTIVOS 1 Descarga Libros Gratis PDF - EP
  • ePub HASTA QUE CAIGA LA LUNA EDICIÓN ESPECIAL descargar gratis
  • LA VIDA EMOCIONAL DE LOS ADOLESCENTES EBOOK LISA DAMOUR Descargar libro PDF EPUB
  • TEORÍA Y REALIDAD DE LA SEMANA SANTA ANTONIO NUÑEZ DE HERRERA ePub gratis
  • PDF LÓPEZ LÓPEZ descargar gratis
  • Descargar ebook EL EXCLAUSTRADO Descarga Libros Gratis PDF - EPUB
  • NOVATAS DE CORAZÓN EBOOK Cristina Prieto Solano Descargar libro PDF EPUB
  • MI ALMA ES TUYA leer pdf
  • Descargar EN 90 DÍAS LO DEJAMOS Daniel Barbadillo Dubon Gratis - EPUB PDF y MOBI
  • BIZANCIO DECLIVE Y CAÍDA leer el libro pdf
  • Descargar PDF MIRACLEMAN DE NEIL GAIMAN Y MARK BUCKINGHAM 2. LA EDAD DE PLATA
  • SÍ TE DA LA VIDA EBOOK MAPI HERMIDA Descargar libro PDF EPUB
  • PDF MORIR NO ES LO QUE MAS DUELE descargar gratis
  • Pdf ePub Mobi SUJETO VERBO ASESINATO - Yves de Villegas descargar ebook gratis
  • EL CAFE DE LA LUNA LLENA leer pdf
  • pdf descargar ALMA NEGRA INSPECTORA ANE CESTERO 4
  • PDF Kindle LOS AMORES DE LILY descargar gratis
  • LEYENDAS JAPONESAS leer el libro
  • SLEEPING IN THE SUN edición en inglés JOANNE HOWARD ePub gratis
  • PASTELERÍA JAPONESA leer pdf
  • PETROGRAFÍA DE ROCAS ÍGNEAS leer epub gratis
  • PDF ATRÉVETE A COMERTE LA VIDA descargar gratis
  • epub descargar O GRANDE CADERNO
  • SAPPHIC FIRE leer epub gratis
  • SAKURA SAKU - TOME 8 leer pdf
  • TOM LAKE leer epub ANN PATCHETT
  • RECETAS CHINAS PARA CALENTAR EL ALMA YUI YAO ePub gratis
  • EL VIAJE DE CILKA ePub gratis
  • Descargar ebook MATEMATICAS 2º ESO CONSTRUYENDO MUNDOS ED 2023 Descarga Libros Gratis PDF - EPUB
  • MUERTE PRIVADA SEGOVIA NOIR 2 leer pdf
  • Descargar ebook DELTA DE VENUS Descarga Libros Gratis PDF - EPUB
  • 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
Previous
Find pet by ID
Next
Update an existing pet
Built with