My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf descargar OTRAS VOCES OTROS AMBITOS
  • MEDITACIONES PARA MORTALES leer epub Oliver Burkeman
  • Pdf ePub Mobi UNA CITA POR SAN VALENTÍN - NIEVES HIDALGO RUTH M. LERGA SANDRA BREE descargar eboo
  • MAR I CEL leer el libro
  • HOW TO STEAL A DRAGON edición en inglés leer epub gratis
  • Descargar ebook BONI VS. MONO 3. BONI VS. MONO Y LA LIGA DE LA DESTRUCCIÓN Descarga Libros Gratis P
  • MI ENEMIGO FAVORITO RODRIGO PANIAGUA ePub gratis
  • Descargar PDF DIARIO DE UN PERIODISTA DEPORTIVO
  • epub descargar EN EL AMOR Y EN LA GUERRA LA CATEDRAL DEL MAR 3
  • EPISTOLARIO ePub gratis
  • epub descargar CARTAS MEMORABLES. NUEVA EDICIÓN
  • LIGUANE leer pdf
  • Descargar pdf THE REALLY DEAD WIVES OF NEW JERSEY
  • Descargar LAMOUR INNÉ OU CONSTRUIT LUCIANA PEKER Gratis - EPUB PDF y MOBI
  • Descargar PDF EPUB EL MISTERIO RAZUMOVSKI
  • Descargar pdf EMERGENCIAS EXTRAHOSPITALARIAS MANUAL
  • LA BODA DE LA ASISTENTA EBOOK Freida McFadden Descargar libro PDF EPUB
  • BOLA DE DRAC SUPER Nº 21 leer pdf
  • pdf descargar AZ ÍTÉLET NAPJA
  • pdf descargar LA TRENZA EDICIÓN LIMITADA A PRECIO ESPECIAL
  • epub descargar REINO DE QUARTZ 1
  • Descargar PDF EPUB BESTE FREUNDE PLUS A1.1 ABCODE
  • PDF Y DEJE DE LLAMARTE PAPÁ descargar gratis
  • Descargar LIMBO HOTEL ENRIQUE FERNANDEZ Gratis - EPUB PDF y MOBI
  • Kindle ME LLAMO GOA 5 - NI LO SUEÑES GOA descargar gratis
  • TRATADO DE PSIQUIATRIA DEL NIÑO Y DEL ADOLESCENTE leer epub gratis
  • Descargar PDF EPUB LOS DOCE
  • 50 CÁPSULAS DE AMOR PROPIO SARA ESPEJO ePub gratis
  • EL CURIOS INCIDENT DEL GOS A MITJANIT leer epub MARK HADDON
  • ESCUCHA A TU INTUICIÓN ePub gratis
  • LA VIDA ES FÍSICA Alba Moreno ePub gratis
  • PDF Kindle LOS AMORES DE LILY descargar gratis
  • EL PRINCIPIO DE INCERTIDUMBRE SONIA GUILLEN COLOMER ePub gratis
  • EL DESTINO DE LA HUMANIDAD ePub gratis
  • pdf descargar LA LENTITUD DE LOS BUEYES
  • Pdf ePub Mobi CÓDIGO FUENTE - Bill Gates descargar ebook 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:13:55
Previous
Find pet by ID
Next
Update an existing pet
Built with