My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PROGRAMAR EN LA LOMLOE ELEMENTOS CURRICULARES Y EJEMPLOS PRÁCTICOS leer el libro pdf
  • BIOMECÁNICA FUNCIONAL. MIEMBROS CABEZA TRONCO 2ª ED. MICHEL DUFOUR ePub gratis
  • pdf descargar HAY ALGO MATANDO NIÑOS 7
  • LOS SENDEROS DEL MAR UN VIAJE A PIE leer el libro pdf
  • PDF Kindle UDO EL REPARADOR DE CORAZONES descargar gratis
  • Kindle ELEGIRME descargar gratis
  • IMAGENS ESTRANHAS leer el libro pdf
  • AMOR ORGÁSMICO leer epub gratis
  • Kindle EL CAMINO A RHODES descargar gratis
  • PDF LAS VIDAS QUE CONSTRUIMOS CUANDO TODO SE DERRUMBA descargar gratis
  • Descargar PDF EPUB ÚLTIMA SALIDA
  • PDF LAS DIABÓLICAS descargar gratis
  • epub descargar PELA FILOLOGIA E PELA LÓGICA  edición en portugués
  • NO LO PIENSES HAZLO YA leer el libro
  • FRANCO leer epub Julián Casanova
  • Descargar PDF EPUB SONIA SOUID TOUCHE PAS À MON QI
  • Kindle UNLOVED descargar gratis
  • CUANDO SOLO QUEDEMOS NOSOTROS leer epub gratis
  • PLANETA MANGA KRYMSOUL Nº 02 02 EBOOK XGreen Descargar libro PDF EPUB
  • Descargar POR MIS RIÑONES QUE HOY COMO BIEN BORJA QUIROGA MIGUEL COBO Gratis - EPUB PDF y MOBI
  • DESCUBRE AL ASESINO MIENTRAS HACES CACA ePub gratis
  • PUERTO ESCONDIDO 10º ANIVERSARIO leer epub gratis
  • Descargar DESAFIANTE ESCUADRÓN 4 BRANDON SANDERSON Gratis - EPUB PDF y MOBI
  • PDF LAS FUERZAS CONTRARIAS descargar gratis
  • PDF Kindle EL CLUB DUMAS descargar gratis
  • PDF Kindle SOY LEYENDA descargar gratis
  • Descargar PDF ESTUCHE MURDLE
  • LA TIRANÍA DE LA MENTIRA Cristina Martín Jiménez ePub gratis
  • CURIOSITY SHOP. ED. INTEGRAL leer el libro pdf
  • Descargar pdf BE WITH ME
  • PDF UNA HISTORIA SIN FINAL descargar gratis
  • Descargar PDF EL HOMBRE QUE PERSEGUIA SU SOMBRA
  • MARTINA EN TIERRA FIRME HORIZONTE MARTINA 2 EBOOK ELISABET BENAVENT Descargar libro PDF EPUB
  • pdf descargar EL PROBLEMA FINAL
  • FRANCES FACIL ESPASA 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

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-12 03:37:30
Previous
Deletes a pet
Built with