My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Descargar PDF EPUB EL CAMINO DEL DESPERTAR
  • UN ESTIU PER ESTIMAR TRILOGIA DALBONS 1 leer el libro
  • PDF COLECCIÓN HÉROES Y VILLANOS 76 AQUAMAN EL TIEMPO Y LA MAR descargar gratis
  • Kindle L ILLA DE L HOLANDES descargar gratis
  • PDF À LOMBRE DES EAUX TROUBLES descargar gratis
  • Descargar PDF EPUB CARNE. NUEVA EDICIÓN
  • REENCUENTRO leer epub gratis
  • LA LEY DE LA INOCENCIA leer epub Michael Connelly
  • epub descargar LES ILLES INTERIORS
  • DISFRUTAR VOL. 2 leer pdf
  • Descargar PDF EPUB CUANDO BAJE LA MAREA
  • PDF Kindle THE LIE OF THE LAND descargar gratis
  • epub descargar TU CUERPO HABLA
  • HARRY POTTER Y LA PIEDRA FILOSOFAL ED. ILUSTRADA BOLSILLO leer epub gratis
  • NERO EBOOK S.J. TILLY Descargar libro PDF EPUB
  • CARNICERO leer el libro
  • Pdf ePub Mobi INTERMEZZO EDICIÓN EN ESPAÑOL - SALLY ROONEY descargar ebook gratis
  • Descargar POPPY PLAYTIME OFICIAL. GUÍA DE ORIENTACIÓN Varios autores Gratis - EPUB PDF y MOBI
  • ePub UN UNIVERSO EFÍMERO CRÓNICAS DE HIRAIA 3 descargar gratis
  • epub descargar MI NOMBRE ES EMILIA DEL VALLE
  • ePub THE NORTH ROAD descargar gratis
  • EL OSO Y EL RUISEÑOR leer el libro pdf
  • TODO MUERE TODO ARDE 3 leer pdf
  • epub descargar LA SOSPECHA DE SOFIA
  • PDF MARFIL ENFRENTADOS 1 descargar gratis
  • SUPER IBÁÑEZ leer el libro
  • LA APERTURA ITALIANA leer el libro
  • Kindle EL TABLERO DE LA REINA CAMPAÑA EDICIÓN LIMITADA descargar gratis
  • Descargar ebook UGLY LOVE. PÍDEME CUALQUIER COSA MENOS AMOR Descarga Libros Gratis PDF - EPUB
  • ALAS DE ÓNIX EMPÍREO 3 leer el libro pdf
  • LAS CLAVES DEL NUEVO DELE C1 leer epub gratis
  • pdf descargar LA ILUSIÓN DEL CORREDOR DE AGUA
  • GRAN GUÍA VISUAL DE LA HISTORIA leer epub gratis
  • Descargar PDF EPUB LA MAGIA DE LAS CASUALIDADES IMPOSIBLES
  • Descargar pdf 84 CHARING CROSS ROAD
  • ENSAYOS ELEMENTALES Eliot Weinberger 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-05 00:49:01
Previous
Find pet by ID
Next
Update an existing pet
Built with