My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Mobi ANTES QUE NADA - MARTIN CAPARROS descargar ebook gratis
  • PEQUEÑOS MILAGROS ePub gratis
  • Descargar pdf LA ERA DE LA REVANCHA
  • pdf descargar SONÓ UN VIOLÍN EN PARÍS
  • BINDING 13 LOS CHICOS DE TOMMEN 1 leer el libro
  • GUINNESS WORLD RECORDS 2025. GAMER S EDITION GUINNESS WORLD RECORDS ePub gratis
  • PDF Kindle CADA VEZ QUE ME MIRAS descargar gratis
  • pdf descargar CHEZ MARGUERITE DURAS - CHEZ MARGUERITE DURAS edición en francés
  • PDF Kindle PROYECTO ZERO descargar gratis
  • DEEP END leer epub Ali Hazelwood
  • Descargar PDF EPUB TODO MUERE TODO ARDE 3
  • PDF POR QUÉ LOS PERROS MUEVEN LA COLA descargar gratis
  • ALGUÉM SOBREVIVE NESTA HISTÓRIA leer el libro pdf
  • EL CAFE DE LA LUNA LLENA leer el libro
  • Descargar pdf INTRODUCCIÓN AL ESTUDIO DE LAS DIFERENCIAS INDIVIDUALES
  • LENGUA DE DRAGONES S.F. WILLIAMSON ePub gratis
  • Pdf ePub Mobi WILLIAMS. TRATADO DE ENDOCRINOLOGÍA 13ª ED. - S MELMED descargar ebook gratis
  • Descargar pdf EN AGOSTO NOS VEMOS
  • Descargar ebook LES FALSES VERITATS Descarga Libros Gratis PDF - EPUB
  • pdf descargar CUADERNO DE TRABAJO PARA EL TRASTORNO LIMITE DE LA PERSONALIDAD
  • PDF BINDING 13 LOS CHICOS DE TOMMEN 1 descargar gratis
  • Descargar UN MILLÓN DE BESOS PARA TI MONICA MURPHY Gratis - EPUB PDF y MOBI
  • epub descargar EL CUENTO DE LA CRIADA
  • GOD OF WRATH LEGADO DE DIOSES 3 leer pdf
  • PERIPECIES leer el libro
  • Descargar pdf INTERMEZZO
  • EL CINE REPARADOR leer el libro
  • LO QUE CALLA TU MIRADA leer pdf
  • SEÑORAS BIEN EBOOK Pilar Eyre Descargar libro PDF EPUB
  • ALIAS EBOOK Jorge Luis Borges Descargar libro PDF EPUB
  • PDF CORAZÓN EN SILENCIO descargar gratis
  • PDF LOS JUEGOS DEL HAMBRE 5 - AMANECER EN LA COSECHA descargar gratis
  • ePub AHORA ME RINDO Y ESO ES TODO descargar gratis
  • Kindle MI QUERIDA LUCÍA 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

Find pet by ID

GET
/pet/{petId}
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/1'
Response Response Example
200 - Success 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

Path Params
petId
string 
required
pet ID
Example:
1

Responses

🟢200OK
application/json
Body
code
integer 
required
status code
>= 0<= 0
data
object (Pet) 
required
pet details
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
🟠404Record not found
🟠400Invalid input
Modified at 2025-06-11 03:28:55
Previous
Kindle MI QUERIDA LUCÍA descargar gratis
Next
Add a new pet to the store
Built with