My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger Pdf Wild Crows Tome 2
  • Télécharger Pdf Cured - Two imaginary boys
  • Télécharger PDF Cette douleur nest pas la mienne - Comment briser le cercle de la transmission famil
  • téléchargement pdf Les racines de la diaspora - Gorée les esclaves y pleurent encore
  • téléchargement pdf Star.X - Heal my Seoul - Roman
  • Pdf ePub Counseling and Treatment in Corrections par téléchargement ebook
  • téléchargement pdf La belle de mai - Fabrique de révolutions
  • Télécharger PDF The Witch of Shadowthorn 5 - The Witch of Shadowthorn 5
  • Télécharger PDF Coeur prisonnier
  • Télécharger PDF Les âmes féroces
  • Lecture en ligne Ebook Comment les grands projets se réalisent - Les éléments inattendus qui jouent
  • téléchargement epub Histoire du climat depuis lan mil
  • téléchargement epub Ceux de 14
  • Télécharger Pdf The Hunchback of Notre-Dame
  • PDF Kindle La médiathèque Charles Nègre de Grasse par Karine Guilbert Gilles Perraudin
  • PDF En finir naturellement avec les rhumatismes par Loïc Ternisien
  • TÉLÉCHARGEMENTS Le vrai faux des chiens
  • PDF Kindle Arrachons une vie meilleure - Le manifeste du jeune activiste face aux périls qui guett
  • PDF Landon Shay Tome 1 par Brittainy C. Cherry Robyn Stella Bligh
  • TÉLÉCHARGER PDF EPUB A Baby For The Navy SEAL
  • téléchargement epub 10 Mindsets to Embrace For Teenage Success Happiness and A Determined Path in
  • Lecture en ligne Ebook Zinovij Narozniak - Lexilé venu dUkraine
  • téléchargement epub Disparition programmée Tome 2
  • Télécharger Pdf Jaime colorier Lapine et chat
  • téléchargement epub Marie Stuart
  • téléchargement epub Vertige - Dix ans denquêtes sur la crise écologique et climatique
  • Télécharger PDF Couture rose
  • Lecture en ligne Ebook Harraps méthode intégrale russe - livre
  • Télécharger Pdf Je trace mes patrons le buste - Construction et transformation
  • télécharger pdf Whispers of Mount Arden
  • Pdf ePub Cinderellas Billion-Dollar Invitation par Michele Renae téléchargement ebook
  • TÉLÉCHARGEMENTS Dont blame me love made me crazy Tome 1
  • Pdf ePub Le jour et lheure par Carole Fives téléchargement ebook
  • téléchargement pdf Lettres dItalie à Musset
  • Télécharger Pdf Lécole au Québec
  • Pdf ePub Protége-Moi Vol. 3 - Protège-Moi 3 par Christina Ross téléchargement ebook
  • PDF Utiliser le livre dans la médiation scientifique - Guide pratique à lusage des professionnels p
  • TÉLÉCHARGEMENTS La communication non violente au quotidien
  • télécharger pdf Leffondrement des sociétés complexes
  • PDF Connections that Count Mastering Networking for Entrepreneurial Growth par Heather Garnett
  • Lire en ligne Pregnant Suspense and Secrets - Pregnancy 1
  • PDF La méthode simple pour se libérer des écrans - Comment échapper à laddiction aux smartphones o
  • téléchargement epub 15 histoires dexpédition inédites qui ont changé ma vie
  • téléchargement epub The Surrender of Seona MacKai - Seonas Story MacKai Brides Book Three - MacKai
  • Télécharger PDF Ocean Eyes - Dir Verfallen
  • téléchargement pdf Eternal Whispers 100 Poem of Timeless Love
  • Lecture en ligne Ebook One Right Answer Infinite Wrong Answers Why Humanity Is Addicted to Being Wr
  • TÉLÉCHARGEMENTS His Curse - Bound Beyond Blood 4
  • TÉLÉCHARGER PDF EPUB Ladmiration
  • PDF Lannuel de la chasse par Alain Philippe
  • 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-10 21:03:52
Previous
Deletes a pet
Built with