My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • ANTIMEDITACIONES leer epub gratis
  • Descargar ebook EL AYUNO CONTRA EL CÁNCER Descarga Libros Gratis PDF - EPUB
  • ELLAS Y EL FUEGO ALICE DOUBLIER ePub gratis
  • LOS JUEGOS DEL HAMBRE 1 - LOS JUEGOS DEL HAMBRE EDICIÓN ESPECIAL leer el libro pdf
  • Descargar PDF THE IMPOSSIBLE MAN edición en inglés
  • pdf descargar GAME OVER
  • epub descargar CIEN AÑOS DE PUBLICIDAD ESPAÑOLA 1899-1999 3 VOLS.
  • Descargar pdf AZORÍN
  • LOS 7 PILARES DEL AMOR PROPIO ePub gratis
  • Descargar PDF EPUB ACELERANDO EN ROJO
  • MI AMOR DEL MÁS ALLÁ leer pdf
  • Pdf ePub Mobi ROMPE EL CICLO - ALICIA MUÑOZ descargar ebook gratis
  • Pdf ePub Mobi TOMODACHI GAME VOL. 19 - MIKOTO SATO YUKI YAMAGUCHI descargar ebook gratis
  • LÈRE DE LA FLEMME OLIVIER BABEAU ePub gratis
  • Descargar pdf METODOLOGIA PAQUI. PATRONAJE CORTE Y CONFECCION INDUMENTARIA VALENCIANA. CORPIÑO
  • SEPARADOS POR LAS MENTIRAS leer el libro
  • PDF Kindle UNA VIDA descargar gratis
  • Kindle ANTIFRÁGIL LAS COSAS QUE SE BENEFICIAN DEL DESORDEN descargar gratis
  • Descargar PDF Y SOBRE EL ANCLA UNA ESTRELLA
  • EL RESURRECCIONISTA leer epub E. B. Hudspeth
  • Kindle REY ENTRE SOMBRAS descargar gratis
  • VAMPIRE ROYALS 2. EL PODER DE LA REINA leer epub Marie Niehoff
  • Descargar pdf BLOOD IN THE CLOUDS edición en inglés
  • Descargar PDF WTF CON TU VOTO
  • Descargar ebook EL APELLIDO DE LAS MUJERES Descarga Libros Gratis PDF - EPUB
  • PDF Kindle HALO EMPTY THRONE descargar gratis
  • EL PLACER DE MATAR A UNA MADRE EBOOK MARTA LÓPEZ-LUACES Descargar libro PDF EPUB
  • HASTA QUE CAIGA LA LUNA leer pdf
  • LOS DIABLOS ePub gratis
  • RUSIA CONTRA EL MUNDO MARC MARGINEDAS ePub gratis
  • MI NOMBRE ES EMILIA DEL VALLE ePub gratis
  • MUERTE BAJO EL SOL EBOOK AGATHA CHRISTIE Descargar libro PDF EPUB
  • PDF Kindle NEBULOSAS edición en portugués descargar gratis
  • PDF LAMÉRIQUE ÉCLATÉE descargar gratis
  • Descargar PDF EPUB TE RECETO UN GATO
  • ePub PORTADORA DE ESTRELLAS STAR BRINGER descargar gratis
  • Descargar PDF LA TOS
  • CURSO DE MARKETING DIGITAL EBOOK MIGUEL ANGEL FLORIDO Descargar libro PDF EPUB
  • ePub CUANDO LEAS ESTO YO YA ESTARE MUERTA descargar 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-07 23:48:10
Previous
Deletes a pet
Built with