My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Mobi UM LANCE EM FALSO - STEPHANIE ARCHER descargar ebook gratis
  • epub descargar EL CAMINO DE VUELTA
  • ROMPE EL CICLO ePub gratis
  • Pdf ePub Mobi LA PRISIONERA DE VALLENIA - LYNETTE NONI descargar ebook gratis
  • LA NOVIA GITANA leer epub CARMEN MOLA
  • Kindle JOJO S BIZARRE ADVENTURE PARTE 7 STEEL BALL RUN 6 descargar gratis
  • Descargar PDF ÉTICA EN LA CALLE
  • PASSOS 1 BÀSIC LLIBRE DE CLASSE 2017 A2 leer el libro
  • LA LAVANDERÍA DE ALMAS DE MARIGOLD leer epub gratis
  • DINS DEL TEU RECORD TRILOGIA D ALBONS 3 ePub gratis
  • MÁS FUERTE QUE EL PELIGRO VUELO Y GLORIA 1 Rebecca Yarros ePub gratis
  • PDF Kindle LIBROS DEL CORAZON 7. EL LAGO DE LOS CISNES Y OTROS BALLETS descargar gratis
  • ATLAS NEGRO leer epub ALVARO APARICIO
  • Descargar ebook EMOCIONES FÓSILES Descarga Libros Gratis PDF - EPUB
  • Descargar pdf PRINCIPIOS DE ECONOMIA POLITICA Y TRIBUTACION - DAVID RICARDO
  • Descargar PDF TU CAMINO HACIA EL AMOR
  • Descargar PDF EPUB ÁMATE A TI MISMO
  • PDF LA PAREJA DEL SIGLO descargar gratis
  • BUENAS PRÁCTICAS PARA LA GESTIÓN PREVENTIVA DESDE LA PERSPECTIVA DE GENERO leer epub LOURDES COORD.
  • Descargar PDF TRAS LA PUERTA
  • MURDLE LA UNIVERSIDAD DEL CRIMEN leer el libro pdf
  • PDF LAS FUERZAS CONTRARIAS descargar gratis
  • SI FUERA MÁS VALIENTE EVA DES LAURIERS ePub gratis
  • ePub CUCHILLO DE SUEÑOS SAGA LA RUEDA DEL TIEMPO 17 descargar gratis
  • JOTADE leer el libro
  • ePub L HOME QUE PLANTAVA ARBRES descargar gratis
  • PDF LA HERMANA DE NIETZSCHE descargar gratis
  • PDF Kindle AMAR SIN ESCALAS descargar gratis
  • Pdf ePub Mobi 15 MINUTOS PARA DEJAR DE PROCRASTINAR - SAM BENNETT descargar ebook gratis
  • Descargar PDF EPUB EL HORIZONTE DEL GRITO
  • PEDRO REYES ESCULTURA SOCIAL SOCIAL SCULPTURE leer epub gratis
  • Descargar PDF ON DEMOCRACIES AND DEATH CULTS
  • LAS HEREDERAS DE LA SINGER 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-13 00:18:36
Previous
Find pet by ID
Next
Update an existing pet
Built with