My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TRONO DE DIOSES. PARTE 2 DIOSES Y MONSTRUOS 2 leer el libro pdf
  • epub descargar 50 COSAS QUE HAY QUE SABER SOBRE PSICOLOGÍA
  • PDF MEDITA CON PETIT BAMBOU descargar gratis
  • epub descargar ENEMIGOS ÍNTIMOS
  • LAS SEIS PUERTAS DEL ENEMIGO EXPERIENCIAS DE UN EXORCISTA leer el libro pdf
  • PDF TU CAMINO HACIA EL AMOR descargar gratis
  • AMISTAD leer epub gratis
  • SIEMPRE ESTUVIMOS AQUÍ leer epub gratis
  • epub descargar OPERACIÓN KERMAN
  • Pdf ePub Mobi EL OLVIDO MAS DULCE - DANIELLE LORI descargar ebook gratis
  • LA LUZ QUE FUIMOS ANTONIO MANUEL ePub gratis
  • Kindle EL BARCO FANTASMA LAS CRÓNICAS DE LA FAMILIA JOUBERT 3 descargar gratis
  • ACABA CON EL SIBO leer pdf
  • Descargar ebook MI ENEMIGO FAVORITO Descarga Libros Gratis PDF - EPUB
  • LA MEVA CRISTINA I ALTRES CONTES EBOOK MERCÈ RODOREDA Descargar libro PDF EPUB
  • CUANDO ERAMOS PILOTOS leer epub gratis
  • Descargar pdf LA CASA EN EL MAR MÁS AZUL
  • CÓMO DORMIR A TU BEBE Olga Sesé ePub gratis
  • pdf descargar 12 SOLUCIONES PARA SUPERAR LOS RETOS DE LAS PANTALLAS
  • LARGA VIDA AL MAL leer el libro pdf
  • Descargar PDF EPUB VOCES DE LA DIVISIÓN AZUL
  • Pdf ePub Mobi UN AMOR COMO EL SOL - Riss M. Neilson descargar ebook gratis
  • LA CAÍDA DEL LEVIATÁN THE EXPANSE 9 leer el libro pdf
  • Descargar EL PLAN MAESTRO JAVIER SIERRA Gratis - EPUB PDF y MOBI
  • ASESINATOS EN FAMILIA leer epub NINA SIMON
  • Descargar ebook EN CADA LATIDO Descarga Libros Gratis PDF - EPUB
  • LAS ÁNIMAS DE LAS AHORCADAS leer pdf
  • Descargar ebook IBERICAS Descarga Libros Gratis PDF - EPUB
  • FUEGO AL MACHISMO MODERNO Júlia Salander ePub gratis
  • TU CAMINO HACIA EL AMOR leer epub gratis
  • CONVERSACION EN LA CATEDRAL EDICIÓN ESPECIAL 50º ANIVERSARIO ePub gratis
  • SMILE ePub gratis
  • Kindle PANETTONES Y BRIOCHES descargar gratis
  • MI DIARIO DE SHADOW WORK EBOOK EMERIC LEBRETON Descargar libro PDF EPUB
  • Descargar PDF EPUB LA TIRANIA DE LA ELECCION
  • 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

Finds Pets by status

GET
/pet/findByStatus
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/findByStatus?status'
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"
        },
        {
            "name": "White Dog",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Dog"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Dog"
                }
            ],
            "status": "sold"
        }
    ]
}

Request

Query Params
status
string 
required
Status values that need to be considered for filter

Responses

🟢200OK
application/json
Body
array of:
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
id
integer <int64>
optional
Category ID
>= 1
name
string 
optional
Category Name
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
id
integer <int64>
optional
Tag ID
>= 1
name
string 
optional
Tag Name
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠400Invalid status value
Modified at 2025-06-11 02:58:30
Previous
Deletes a pet
Built with