My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Descargar PDF EPUB CONSTRUYE LA VIDA QUE ANHELAS
  • TURNING TO BIRDS leer el libro pdf
  • PDF Kindle AGUAVIENTO descargar gratis
  • LOS DOCE leer pdf
  • Kindle 4 SEMANAS PARA ORDENAR TU CASA Y TU VIDA descargar gratis
  • Descargar ebook CAMINOS Y PAVIMENTACIÓN FUNDAMENTOS Y PRÁCTICAS EN INGENIERÍA CIVIL Descarga Libros
  • SUEÑOS DE BRONCE SERIE FAYE 3 ePub gratis
  • PDF Kindle JUSTINIANO descargar gratis
  • ePub EL EXTRAÑO VERANO DE TOM HARVEY descargar gratis
  • Descargar PDF EPUB PERDIDA
  • ePub EL SÍNDROME DE LA CHICA BUENA descargar gratis
  • Kindle CANTO JO I LA MUNTANYA BALLA descargar gratis
  • SAINT SEIYA. LOS CABALLEROS DEL ZODÍACO FINAL EDITION Nº 06 ePub gratis
  • epub descargar APNÉE
  • HTML5 Y CSS3 REVOLUCIONE EL DISEÑO DE SUS SITIOS WEB 4ª EDICION ePub gratis
  • Descargar PDF ENTRE EL MAR Y LAS ESTRELLAS
  • Descargar LOS CORDINA Nora Roberts Gratis - EPUB PDF y MOBI
  • DIDÁCTICA DE LAS CIENCIAS EXPERIMENTALES II ePub gratis
  • MINECRAFT. DIARIO DE UN ALDEANO PRINGAO. CÓMIC 7 EBOOK CUBE KID Descargar libro PDF EPUB
  • Descargar PDF MANUAL DE TEORIA DE LA MENTE PARA NIÑOS CON AUTISMO EJERCICIOS MATERIALES Y ESTRATEGI
  • Descargar ebook EL TABLERO DE LA REINA CAMPAÑA EDICIÓN LIMITADA Descarga Libros Gratis PDF - EPUB
  • EL VOLUMEN DEL TIEMPO II leer pdf
  • PDF LA MUERTE VISITA MARLOW descargar gratis
  • Kindle LA ESPADA DE LA ASESINA EDICION LIMITADA descargar gratis
  • VI DE SOLITUD EBOOK Irène Némirovsky Descargar libro PDF EPUB
  • PDF Kindle LAS SÍLABAS DEL CIELO descargar gratis
  • HERMANOS DE SANGRE Nº 03 03 LA FURIA DE LOS DIOSES leer el libro pdf
  • TEMPTING TESSA leer el libro
  • M ESPERARAS leer epub gratis
  • Descargar PDF SUPERMAN ACTION COMICS VOL. 1 LA MAFIA INVISIBLE
  • PDF Kindle ENGAGE 3 descargar gratis
  • PDF Kindle TODOS MIS POEMAS HABLAN DE TI 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-16 00:52:40
Previous
PDF Kindle TODOS MIS POEMAS HABLAN DE TI descargar gratis
Next
Add a new pet to the store
Built with