My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lecture en ligne Ebook Méthode de Lecture rapide
  • téléchargement pdf O Toque Dos Anjos - A Magia da Cura Celestial
  • Télécharger Pdf Phoenix Rising
  • PDF Le Yoga des émotions - 5 séances complètes pour aider les petits à vivre avec toutes leurs émot
  • Télécharger PDF La magie de Yule
  • Télécharger PDF Sams Wiggly Tooth
  • Télécharger PDF Inconditionnelles
  • téléchargement epub Tomber luniforme Tome 4
  • PDF Kindle Assoiffés Tome 1 par Tracy Wolff Aylin Manço
  • Kindle La formation technique et professionnelle en France - Années 1820 - 1980 téléchargement
  • téléchargement pdf Arena Tome 2
  • téléchargement pdf Gellerts New Job
  • télécharger pdf La vie des spectres
  • PDF Storm in a Teacup books 1 -4 téléchargement
  • télécharger pdf La collectionneuse de secrets
  • télécharger pdf Gods Rest For Tired Christians
  • Télécharger PDF Magnolia Parks T3 The Long Way Home
  • Lire en ligne Breaking the Ice
  • Lire en ligne The Trainwreck - Beguiling a Billionaire 6
  • Pdf ePub Angels Among Us - Veronicas Adventures 4 par veronica esagui téléchargement ebook
  • Pdf ePub Neuvaine à saint Joseph le juste - Pour le travail et le mariage par Jean Pliya téléchar
  • téléchargement pdf La oss bruke ytringsfriheten til å prise Vegansk måte
  • PDF 1001 Heilung - Wie Matthis Dickmann hilft schmerzfrei zu leben téléchargement
  • PDF Le quai de Ouistreham par Florence Aubenas
  • TÉLÉCHARGER PDF EPUB You Have the Power to Create Your Own World - Empowering Todays Christian You
  • TÉLÉCHARGEMENTS Punishing the Minx Age Gap Older Man Younger Woman Story - Bratty by Nature 1
  • PDF Summer with the Single Dad - The Single Dads of San Camanez The Brew Brothers 2 téléchargement
  • télécharger pdf LES SENS DE LAMOUR
  • PDF Kindle La Martingale référentiel de fiches médicales pour lEDN - Gynécologie-Obstétrique Uro
  • Télécharger PDF Strive - 8 Steps to Find Your Awesome
  • Télécharger Pdf La naissance en BD - Découvrez vos super pouvoirs
  • TÉLÉCHARGER PDF EPUB Une étrange défaite - Sur le consentement à lécrasement de Gaza
  • télécharger pdf Friends Central Perk - Le livre de cuisine officiel
  • PDF Kindle Le plaisir dapprendre en stage par
  • TÉLÉCHARGEMENTS Inspire - The Band 3
  • téléchargement epub Fruits
  • PDF Terms and Conditions par Lauren Asher
  • Télécharger PDF Travailler sur soi ça sapprend - La boîte à outils pour les adultes et les enfants
  • Kindle La reine des gargouilles Tome 3 téléchargement
  • Lire en ligne Les silences des pères
  • télécharger pdf Lombre du soir
  • Pdf ePub A Love Like Wildfire par Niqoula Alessandra téléchargement ebook
  • téléchargement epub Assassins Creed
  • téléchargement epub Conan le barbare Lintégrale
  • Kindle Tailor Fit - Futa on Female Erotica 3 téléchargement
  • Télécharger PDF Last Customer A Shoe Store Fantasy
  • téléchargement epub Vipère au poing
  • Lecture en ligne Ebook Méthode de français Défi 4 B2 - Livre de lélève
  • TÉLÉCHARGEMENTS Guide du Routard Martinique 2025 26
  • Pdf ePub Shopify Mastery The Ultimate Guide to E-commerce Success par téléchargement ebook
  • 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-12 22:18:15
Previous
Deletes a pet
Built with