My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • EL PEQUEÑO GATSBY Rodrigo Fresán ePub gratis
  • Descargar PDF EPUB ESPIA DE DIOS
  • PDF Kindle HOMENAJE A TU SILENCIO descargar gratis
  • RUSIA CONTRA EL MUNDO leer epub MARC MARGINEDAS
  • Pdf ePub Mobi PERFECTO CAOS AMORES CAÓTICOS 1 - Zeliri descargar ebook gratis
  • pdf descargar EMPIEZA HOY Y CAMBIA TU VIDA PARA SIEMPRE
  • PANORAMA ACTUAL DE LA QUIMICA FARMACEUTICA EBOOK JUAN ANTONIO GALBIS PEREZ Descargar libro PDF EPU
  • Descargar EL CORAZÓN DE RUBY LOS SECRETOS DE PRIMROSE LAKE 2 NOA ALFÉREZ Gratis - EPUB PDF y MOBI
  • PDF Kindle TODAS ESAS COSAS QUE TE DIRE MAÑANA EDICIÓN LIMITADA descargar gratis
  • PDF EL PRINCIPE CRUEL descargar gratis
  • Kindle RECUERDAME BAILANDO descargar gratis
  • Descargar PDF EPUB ROM LA ETAPA ORIGINAL MARVEL LIMITED EDITION
  • DIOSAS. MITOS EN PRIMERA PERSONA NIKÉ DE SAMOTRACIA ePub gratis
  • A CIÊNCIA DO DESCONFORTO ePub gratis
  • Descargar PDF EPUB PRINCIPIOS DE NEUROCIENCIA 5º ED.
  • EL FOSO DE LOS OLVIDADOS leer pdf
  • ZAPATOS DE LLUVIA MAYTE MAGDALENA ePub gratis
  • NEVER FLINCH leer el libro
  • MAÑANA LO DEJO 3ª ED. EBOOK PEDRO GARCIA AGUADO Descargar libro PDF EPUB
  • epub descargar EL SEGREST DE L HABITATGE
  • pdf descargar CÓMPLICE SERIE EDDIE FLYNN 4
  • ePub MIS EXPLORADORES FAVORITOS descargar gratis
  • SOMBRAS DE AZUL. leer el libro
  • Descargar ebook YO SOY ERIC ZIMMERMAN VOL. II Descarga Libros Gratis PDF - EPUB
  • ePub INVISIBLE descargar gratis
  • Descargar QUE NUESTRA ALEGRÍA PERDURE KEVIN LAMBERT Gratis - EPUB PDF y MOBI
  • PATRIA DIGNA leer pdf
  • CURSO PRÁCTICO CON UNITY 3D leer epub DAVID CANTON NADALES
  • PDF Kindle EL LIBRO DE AYLA descargar gratis
  • ePub LAS PRUEBAS DEL SOL descargar gratis
  • Descargar ebook CÓMO PIENSAN LOS NIÑOS Descarga Libros Gratis PDF - EPUB
  • EL PUENTE DONDE HABITAN LAS MARIPOSAS leer epub Nazareth Castellanos
  • 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-13 22:53:30
Previous
Deletes a pet
Built with