My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lecture en ligne Ebook Anglais - La méthode Michel Thomas débutants et faux débutants
  • Lecture en ligne Ebook Numagician Đánh Thức Phù Thủy Trí Nhớ Trong Bạn - Numagician 1
  • téléchargement epub La disparition de Stéphanie Mailer
  • PDF Le vieux et la belle téléchargement
  • Pdf ePub La Bible en bande dessinée - Le vrai texte par Toni Matas Picanyol téléchargement ebook
  • téléchargement epub 3 Indian Bhabhi Sex Stories
  • Télécharger Pdf Assassins Creed
  • Lecture en ligne Ebook De verrassing - Winterspetters 2
  • télécharger pdf En finir avec la peur - Le livre pour se soigner de ses peurs et angoisses
  • Lire en ligne Michael Jordan
  • TÉLÉCHARGER PDF EPUB Witch and God Tome 3
  • Télécharger Pdf Le Mans - Escapade dans la Sarthe
  • Télécharger Pdf Juanalberto et Halbran
  • téléchargement pdf 12 questions à se poser sur largent de poche
  • téléchargement epub Le serpent vert
  • téléchargement epub 2666
  • téléchargement epub Marta et le mystère de Little Farm - A Gold Story 5
  • Télécharger PDF Conan il Barbaro Undicesima Parte - Conan Il Barbaro 11
  • TÉLÉCHARGER PDF EPUB Abfuhr an den Shifter Boss - Rejecting Fate 1
  • Télécharger PDF Points à relier mystères Spidey et ses amis extraordinaires - Révèle le dessin en re
  • Kindle Lonely Wolf téléchargement
  • télécharger pdf Dor et de jungle
  • Pdf ePub For the Love of Winter Volume Two par Leah Miles Sara J. Walker Vickey Wollan C.L. Hart
  • Télécharger PDF Shadows Beneath the Sun A Journey Through Love Loss and Redemption
  • Kindle 100 jeux Animal Jack téléchargement
  • téléchargement pdf Unlock Your Power A Complete Guide to Personal Transformation
  • télécharger pdf Laimes hercogs
  • Télécharger PDF Mon cerveau a encore besoin de lunettes - Le TDAH chez les adolescents et les adult
  • TÉLÉCHARGER PDF EPUB Montserrat
  • PDF Call Ripley par
  • Kindle Lélément humain - Comprendre le lien entre estime de soi confiance et performance téléchar
  • télécharger pdf Le Secours de lAlpha - Alpha Bad Boys 18
  • TÉLÉCHARGER PDF EPUB The War of the Worlds
  • PDF Kindle Gens des nuages par Jean-Marie-Gustave Le Clézio Jémia Le Clézio Bruno Barbey Elsa Ro
  • Télécharger PDF Jacaranda
  • Lecture en ligne Ebook Gestión de marketing para principiantes Cómo crear y establecer tu marca con
  • 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-11 02:43:10
Previous
Deletes a pet
Built with