My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lire en ligne Alice and Meg - Girls Trip - Fallen Lords M.C. 13
  • TÉLÉCHARGER PDF EPUB Full Moon Games The Complete Trilogy
  • Télécharger PDF La disparition de Stéphanie Mailer
  • Lecture en ligne Ebook Game of Alliances. Tome 1 English
  • Kindle Behind Blue Eyes téléchargement
  • PDF Joe Abercrombie - LIntégrale téléchargement
  • téléchargement epub David Attenborough Lines to Live By - Embrace the wonder of your world
  • TÉLÉCHARGEMENTS Animaux à laquarelle - 20 projets pour apprendre et progresser
  • téléchargement epub Lunivers du vase grec au musée du Louvre - Potiers peintres et poètes de la Gr
  • télécharger pdf Faeries Heart - Daughters of Elysium 2
  • Kindle La soif sen va en buvant - Carnet de sagesse de 99 citations et pensées qui sauvent une vie
  • PDF No Mistake - Onyx Black Ops 2 par Wendy Justine
  • PDF Sin Too - Sin 2 par S.J. Tilly
  • Lecture en ligne Ebook Lone Star Lovers Books 5-8 - Lone Star Lovers
  • PDF République citoyenneté intégration par Igor Martinache
  • PDF Love Puck - Las Vegas Angels Duet Series 6 téléchargement
  • téléchargement epub Edito B2 - 4ème édition - Livre didierfle.app SANTILLANA
  • téléchargement pdf Wordwright - Soulsmith 3
  • téléchargement pdf Zakura 2 Aftermath
  • TÉLÉCHARGER PDF EPUB Pregnant Suspense and Secrets - Pregnancy 1
  • TÉLÉCHARGER PDF EPUB Baby Mama
  • télécharger pdf Lone Star Lovers Books 5-8 - Lone Star Lovers
  • TÉLÉCHARGEMENTS I Want To Be A Successful Entrepreneur. Qualities In The Profile Of An Entrepreneur
  • PDF Viviendo en Equilibrio - Welfare 1 téléchargement
  • Lecture en ligne Ebook Identitätsfäden im Spiegel der Seele - Grenzgänger des Ichs
  • Télécharger PDF Ralph Azham Tome 12
  • Lecture en ligne Ebook Inconditionnelles
  • télécharger pdf Verity
  • PDF Les licornes téléchargement
  • TÉLÉCHARGEMENTS Penser comme un millionnaire - Changer ses habitudes pour réussir et être heureux
  • TÉLÉCHARGEMENTS B2 Sprachbausteine B2 Schreiben von Forumsbeiträgen DTB BSK B2 - B2 Deutsch-Test f
  • PDF Le petit chat et moi par Pauline Le Gall
  • Pdf ePub Un palais dépines et de roses Tome 3 par Sarah J. Maas Anne-Judith Descombey Kelly de Gr
  • Télécharger PDF Marie Stuart
  • PDF Huhito Fables Vol.4 - Fables 4 par
  • TÉLÉCHARGEMENTS Où est le problème
  • TÉLÉCHARGER PDF EPUB Sueño Verde
  • TÉLÉCHARGER PDF EPUB Au coeur du 7 octobre - Témoignages
  • PDF Le régime Seignalet en 60 recettes - Sans gluten et sans lait téléchargement
  • 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
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-14 00:43:01
Previous
Deletes a pet
Built with