My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TRONO DE DIOSES. PARTE 2 DIOSES Y MONSTRUOS 2 leer el libro pdf
  • epub descargar 50 COSAS QUE HAY QUE SABER SOBRE PSICOLOGÍA
  • PDF MEDITA CON PETIT BAMBOU descargar gratis
  • epub descargar ENEMIGOS ÍNTIMOS
  • LAS SEIS PUERTAS DEL ENEMIGO EXPERIENCIAS DE UN EXORCISTA leer el libro pdf
  • PDF TU CAMINO HACIA EL AMOR descargar gratis
  • AMISTAD leer epub gratis
  • SIEMPRE ESTUVIMOS AQUÍ leer epub gratis
  • epub descargar OPERACIÓN KERMAN
  • Pdf ePub Mobi EL OLVIDO MAS DULCE - DANIELLE LORI descargar ebook gratis
  • LA LUZ QUE FUIMOS ANTONIO MANUEL ePub gratis
  • Kindle EL BARCO FANTASMA LAS CRÓNICAS DE LA FAMILIA JOUBERT 3 descargar gratis
  • ACABA CON EL SIBO leer pdf
  • Descargar ebook MI ENEMIGO FAVORITO Descarga Libros Gratis PDF - EPUB
  • LA MEVA CRISTINA I ALTRES CONTES EBOOK MERCÈ RODOREDA Descargar libro PDF EPUB
  • CUANDO ERAMOS PILOTOS leer epub gratis
  • Descargar pdf LA CASA EN EL MAR MÁS AZUL
  • CÓMO DORMIR A TU BEBE Olga Sesé ePub gratis
  • pdf descargar 12 SOLUCIONES PARA SUPERAR LOS RETOS DE LAS PANTALLAS
  • LARGA VIDA AL MAL leer el libro pdf
  • Descargar PDF EPUB VOCES DE LA DIVISIÓN AZUL
  • Pdf ePub Mobi UN AMOR COMO EL SOL - Riss M. Neilson descargar ebook gratis
  • LA CAÍDA DEL LEVIATÁN THE EXPANSE 9 leer el libro pdf
  • Descargar EL PLAN MAESTRO JAVIER SIERRA Gratis - EPUB PDF y MOBI
  • ASESINATOS EN FAMILIA leer epub NINA SIMON
  • Descargar ebook EN CADA LATIDO Descarga Libros Gratis PDF - EPUB
  • LAS ÁNIMAS DE LAS AHORCADAS leer pdf
  • Descargar ebook IBERICAS Descarga Libros Gratis PDF - EPUB
  • FUEGO AL MACHISMO MODERNO Júlia Salander ePub gratis
  • TU CAMINO HACIA EL AMOR leer epub gratis
  • CONVERSACION EN LA CATEDRAL EDICIÓN ESPECIAL 50º ANIVERSARIO ePub gratis
  • SMILE ePub gratis
  • Kindle PANETTONES Y BRIOCHES descargar gratis
  • MI DIARIO DE SHADOW WORK EBOOK EMERIC LEBRETON Descargar libro PDF EPUB
  • Descargar PDF EPUB LA TIRANIA DE LA ELECCION
  • 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 02:58:30
Previous
Find pet by ID
Next
Update an existing pet
Built with