My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • HEURA Volker Schmitt ePub gratis
  • Kindle CHANNEL TO THE FUTURE 4ª ESO descargar gratis
  • PDF Kindle ESSENCIALISMO descargar gratis
  • LA ARAÑA INSPECTOR JOONA LINNA 9 leer epub LARS KEPLER
  • LOS OJOS SON LA MEJOR PARTE leer pdf
  • HOW TO USE THE BOOK OF COMMON PRAYER edición en inglés ePub gratis
  • ePub CRIMS. LLUM A LA FOSCOR CRIMS 2 descargar gratis
  • SINGLUTENISMO leer el libro
  • Descargar LA ISLA DE LAS MUJERES DEL MAR LISA SEE Gratis - EPUB PDF y MOBI
  • PDF Kindle L ALBA SULLA MIETITURA. HUNGER GAMES descargar gratis
  • Kindle MAKE TIME CÓMO ENFOCARTE EN LO QUE IMPORTA CADA DÍA descargar gratis
  • Kindle MILEI UNA HISTORIA DEL PRESENTE descargar gratis
  • Descargar pdf MEMORIAS DUN NENO LABREGO
  • BONI VS. MONO 3. BONI VS. MONO Y LA LIGA DE LA DESTRUCCIÓN JAMIE SMART ePub gratis
  • ESCENAS DE UNA INFANCIA leer epub Jon Fosse
  • EL HOLOCAUSTO DAN STONE ePub gratis
  • Descargar pdf NO DISPONIBLE
  • NO SOY YO ERES TÚ leer el libro pdf
  • OPUS leer epub GARETH GORE
  • SIMPLEMENTE JAMIE leer pdf
  • pdf descargar CLAVES DE LA GRAMATICA CHINA
  • WILD SIDE ROSE HILL 3 ePub gratis
  • Descargar PDF EPUB ME LLAMO ROJO
  • Kindle ILUSTRACIÓN CREATIVA ESPACIO DE DISEÑO descargar gratis
  • Descargar EL FUTURO YA ES AYER RAPPEL Gratis - EPUB PDF y MOBI
  • LOS ELEMENTOS DE UN BESO leer pdf
  • ePub ALES DÒNIX EMPIRI 3 descargar gratis
  • Descargar PDF EPUB BESOS DE CANELA Y HIELO
  • LA PÉRFIDA ALBIÓN leer pdf
  • Descargar PDF HEROE A MI PESAR
  • pdf descargar LA BUENA ANSIEDAD
  • PDF Kindle LA CONDESA MALDITA CAMPAÑA EDICIÓN LIMITADA descargar gratis
  • TRES DÍAS DE NOVIEMBRE leer epub gratis
  • EL ORIGEN DE LA PUERTA DE LOS TRES CERROJOS 1. LA SEMILLA DE UNA REVOLUCIÓN SONIA FERNANDEZ VIDAL eP
  • CIRUGIA EN PEQUEÑOS ANIMALES 5ª ED. leer el libro
  • PDF BE GOOD BANKERS descargar gratis
  • SI QUIERES PUEDES ÑIÑIÑI leer epub gratis
  • pdf descargar BELEZA VERMELLA
  • 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-08 02:02:50
Previous
Deletes a pet
Built with