My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Descargar ebook AMA TU SOLEDAD Descarga Libros Gratis PDF - EPUB
  • Descargar ARREBOL JUAN JESUS SANCHEZ GUTIERREZ NULL Gratis - EPUB PDF y MOBI
  • Kindle LA LEY DEL ESPEJO DELUXE descargar gratis
  • Pdf ePub Mobi OYE DIABLA - JULIA DE LA FUENTE MIGALLÓN descargar ebook gratis
  • LA TIERRA ERRANTE leer el libro
  • MI ALMA ES TUYA leer el libro
  • Descargar ebook K-GUIDE Descarga Libros Gratis PDF - EPUB
  • Kindle A CIDADE DO SOL edición en portugués descargar gratis
  • OLVIDADAS TENIENTE LUCÍA GUERRERO 2 leer epub Bernard Minier
  • pdf descargar GUÍA VISUAL DE LA ARQUITECTURA EN LA EDAD MEDIA II
  • PDF Y DEJÉ DE LLAMARTE PAPÁ descargar gratis
  • MIRALL TRENCAT leer el libro pdf
  • EL ENTRENADOR DE TRADING leer pdf
  • DIEZ SECRETOS PARA EL ÉXITO Y LA PAZ INTERIOR leer pdf
  • Descargar PDF JOHN AND PAUL
  • Descargar TODAVÍA MÁS ALLÁ DE MIS CANCIONES Andrés Suárez Gratis - EPUB PDF y MOBI
  • pdf descargar STRANGE PICTURES
  • POLARIZADOS O PARALIZADOS EBOOK JUAN ROCH Descargar libro PDF EPUB
  • ERES MAMÁ leer el libro
  • PDF MANUAL DE OBSTETRICIA Y PROCEDIMIENTOS MEDICOQUIRURGICOS descargar gratis
  • Kindle HARRY POTTER Y LA PIEDRA FILOSOFAL ED. ILUSTRADA BOLSILLO descargar gratis
  • LOS NINJAS DE KOGA Y SU CODIGO SECRETO leer el libro pdf
  • Pdf ePub Mobi EL VIAJE DEL TAROT - RACHEL POLLACK descargar ebook gratis
  • PDF LAS VIDAS QUE CONSTRUIMOS CUANDO TODO SE DERRUMBA descargar gratis
  • epub descargar PECADOS 2. REY DE LA SOBERBIA
  • Kindle HEURA descargar gratis
  • SEIS CASI BESOS Y UNO QUE SÍ ePub gratis
  • Pdf ePub Mobi NO SEAS EXAGERADA - ELIZABETH COMEN descargar ebook gratis
  • Descargar pdf EL REBAÑO
  • Descargar ebook LA REY Descarga Libros Gratis PDF - EPUB
  • Descargar PDF CANON DE CÁMARA OSCURA
  • pdf descargar UNA MENTE DIFERENTE COMPRENDER A LOS NIÑOS CON AUTISMO Y SINDROM E DE ASPERGER
  • Descargar ebook UNA MALDICIÓN CONDENADA Descarga Libros Gratis PDF - EPUB
  • PDF UN MUNDO DE HISTORIAS descargar 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-09 02:38:00
Previous
Find pet by ID
Next
Update an existing pet
Built with