My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • MOMO EBOOK MICHAEL ENDE Descargar libro PDF EPUB
  • Descargar ebook LUCÍA Y EL INFINITO Descarga Libros Gratis PDF - EPUB
  • LOS OJOS SON LA MEJOR PARTE leer el libro pdf
  • LA REVOCACIÓN ePub gratis
  • PUNK ROCK JESUS DC POCKET leer el libro pdf
  • pdf descargar LES PROFANATEURS. JOURNAL 1971 - 2015 - LES COULISSES DUN DEMI-SIÈCLE DE VIE LITTÉRAIR
  • Descargar CUÍDATE. SABIDURÍA COREANA PARA TU BIENESTAR DIARIO DANCING SNAIL Gratis - EPUB PDF y MOB
  • EL ETERNAUTA 1969 leer epub gratis
  • Kindle SUMISION descargar gratis
  • Descargar PDF EPUB MISS CUATRO PAREDES
  • Descargar ebook EL MITO DEL VOTANTE RACIONAL Descarga Libros Gratis PDF - EPUB
  • epub descargar MANUAL DE MEDICINA DE MONTAÑA Y DEL MEDIO NATURAL
  • Kindle TODOS A LA MESA descargar gratis
  • BRUJAS LA MUERTA GEORGES RODENBACH ePub gratis
  • PDF DIDÁCTICA DE LAS CIENCIAS EXPERIMENTALES II descargar gratis
  • Descargar PDF LOS SEDUCTORES
  • PDF Kindle MASTERCHEF JUNIOR. CÓMO SER UN CHEF DE CINE descargar gratis
  • HOOKY. EL LIBRO OFICIAL DE COLOREAR leer epub gratis
  • pdf descargar URGENCIAS MEDICAS FORMATO HANDBOOK
  • Descargar pdf LAS FUERZAS CONTRARIAS
  • Descargar METAMEMORIAS GARCÍA ALAN Gratis - EPUB PDF y MOBI
  • FLORES DE PAPEL EBOOK EBBABA HAMEIDA Descargar libro PDF EPUB
  • Descargar ebook FLAWLESS SIN REGLAS EDICIÓN ESPECIAL LIMITADA Descarga Libros Gratis PDF - EPUB
  • LA NOCHE DE LA BRUJA. LIBRO UNO EBOOK SARA RAASCH BETH REVIS Descargar libro PDF EPUB
  • PHOTO SUR DEMANDE leer epub gratis
  • Pdf ePub Mobi TU CAMINO HACIA EL AMOR - ADRIAN CHICO ITSADRIANCHICO descargar ebook gratis
  • CARNE. NUEVA EDICIÓN leer pdf
  • Descargar PDF EPUB EL REY MEDUSA
  • PDF Kindle FRAN HACE PAN descargar gratis
  • epub descargar EL GRITO DE LA GAVIOTA
  • Descargar ebook EL CRECIMIENTO DE LA INFORMACIÓN Descarga Libros Gratis PDF - EPUB
  • Kindle ASASINATO NA CASA ROSA descargar gratis
  • PDF Kindle LA BELLEZA DE LA RAREZA descargar gratis
  • ePub THE IMPOSSIBLE MAN edición en inglés descargar gratis
  • Kindle NETZWERK NEU A1.2 ALUM EJER AUD VID descargar gratis
  • PDF Kindle CADA VEZ QUE ME MIRAS descargar gratis
  • KIJIN GENTOSHO CAZADOR DE DEMONIOS 7 leer el libro pdf
  • 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-16 03:42:50
Previous
Deletes a pet
Built with