My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGEMENTS Free Use Volunteer - Free Use Sluts 1
  • Pdf ePub Tataki zomé - Technique dimpression végétale inspirée du Japon - Imprimer la nature par Ju
  • téléchargement pdf Cheval blanc pâle
  • Lire en ligne Unlocking Profit Potential Mastering Time-Released CPA Strategies
  • Télécharger Pdf La France périphérique - Comment on a sacrifié les classes populaires
  • PDF LEclair de génie Café par Christophe Adam Laurent Fau Audrey Cosson Leslie Gogois
  • Lire en ligne Das passive Online Kurs Business - Finanzielle Freiheit mit eigenen Online Kursen auf
  • PDF The Devils Sons Tome 4 par Chloé Wallerand
  • PDF Fall of X Tome 11 par Al Ewing Benjamin Percy Gerry Duggan Yildiray Cinar
  • télécharger pdf Through The Eyes Only
  • TÉLÉCHARGER PDF EPUB Queen of Skies - Kingdom of Fairytales 45
  • télécharger pdf Rédalga
  • TÉLÉCHARGER PDF EPUB Objectif CRPE 2023 - Français - La leçon - épreuve orale dadmission Ebook PDF
  • PDF La capacité dêtre seul par Donald Winnicott
  • téléchargement pdf Dibbouks
  • Kindle A Hotwifes Christmas Gift téléchargement
  • PDF Le génie des origines. Psychanalyse et psychoses téléchargement
  • Pdf ePub Pack mensuel Black Rose - 10 romans septembre 2024 par téléchargement ebook
  • PDF Seyvoz par Joy Sorman Maylis de Kerangal
  • télécharger pdf A Baby For The Navy SEAL
  • Télécharger PDF Fractured Shields
  • PDF Evergreen World Famous Faces Part-2 téléchargement
  • Lecture en ligne Ebook Jimmys Swamp Years The Complete Collection
  • Télécharger Pdf Méthode de Lecture rapide
  • Télécharger PDF Conan o Bárbaro Terceira Parte - Conan o Bárbaro 3
  • Télécharger PDF Die Zauberin des Schattendorns - A Feiticeira de Shadowthorn 1
  • PDF La voix secrète des animaux - Oracle médiumnique de communication animale téléchargement
  • télécharger pdf The Interview
  • télécharger pdf B2 Sprachbausteine B2 Schreiben von Forumsbeiträgen DTB BSK B2 - B2 Deutsch-Test
  • Lire en ligne Forever Boy - The Forever Saga 1
  • TÉLÉCHARGER PDF EPUB Campus drivers Tome 1
  • téléchargement epub New To Me - Firefighters of Jacaranda Bay 3
  • Lecture en ligne Ebook Fill or Kill
  • téléchargement pdf Departe de Acasă Aproape de Inimă
  • téléchargement epub Reiseblog Wahle Ausgabe November 2023 - Meran in Südtirol Italien
  • 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-08 02:02:50
Previous
Deletes a pet
Built with