My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Lord Baltimore Intégrale volume 1
  • Lecture en ligne Ebook Ein Haus - Zwei Männer - Drei Frauen - ... und unzählige Kameras
  • Lecture en ligne Ebook La Passe-miroir Tome 4
  • téléchargement epub La LCA en anglais facile aux EDN - Fiches théoriques et pratiques
  • TÉLÉCHARGEMENTS Monica Rambeau - Photon
  • TÉLÉCHARGER PDF EPUB Secrets dayurvéda pour les cheveux - Les rituels et soins indispensables
  • télécharger pdf Batman Spawn
  • PDF The Legend of Vanquishing Immortals and Demons - The Legend of Vanquishing Immortals and Demons
  • Lecture en ligne Ebook Afrique mon gri-gri
  • télécharger pdf Marketing Management Essentials You Always Wanted To Know - Self Learning Managemen
  • Kindle Souls Within Doors téléchargement
  • Kindle Beyond my Wounds I Am Witness of Gods Power - Beyond my Wounds téléchargement
  • télécharger pdf Le tarot pas à pas - Histoire iconographie interprétation lecture
  • Télécharger PDF Dieylani de lombre à la lumière
  • Kindle Tu sogni ed io rimango in piedi téléchargement
  • Télécharger Pdf Lone Star Lovers Books 5-8 - Lone Star Lovers
  • Lecture en ligne Ebook Lonely Wolf
  • Pdf ePub Le Hobbit par John Ronald Reuel Tolkien Jemima Catlin Daniel Lauzon téléchargement ebook
  • télécharger pdf Liberté. No. 341 Hiver 2024 - Sexe en novembre. Le numéro qui va rendre vos enfant
  • TÉLÉCHARGER PDF EPUB Mon livre de jeux
  • TÉLÉCHARGEMENTS Le bal des voleurs
  • PDF What You Wish For - Fable Notch 6 par
  • Pdf ePub Les enfants traumatisés par les conflits de guerre par Zygmunt Ostrowski téléchargement eb
  • TÉLÉCHARGEMENTS Parler un jeu à deux - Un guide pratique pour les parents denfants présentant des
  • Pdf ePub Le sabotier du plateau par André Michoux téléchargement ebook
  • téléchargement epub Skin Deep - Santas Shorts
  • Lire en ligne Lindésir
  • Télécharger PDF Sable Peak - The Edens 6
  • Lecture en ligne Ebook Wordwright - Soulsmith 3
  • TÉLÉCHARGEMENTS Kanji et Kana - Manuel et lexique des 2141 caractères officiels de lécriture japona
  • Télécharger PDF Rosewood Chronicles Tome 3
  • PDF Kindle Dig Me No Grave. Illustrated par Robert E. Howard
  • Télécharger PDF Lempire colonial français en Afrique - Métropole et colonies sociétés coloniales
  • TÉLÉCHARGEMENTS La Maternelle
  • télécharger pdf Snow in Love
  • Télécharger Pdf Un monde presque parfait
  • Lecture en ligne Ebook Love Me
  • TÉLÉCHARGEMENTS The Cape of Good Hope The Chaplain as Missionary to the Secular Age - The Chaplain M
  • TÉLÉCHARGEMENTS Les coquelicots
  • Lecture en ligne Ebook Star.X - Heal my Seoul - Roman
  • Kindle Réussir mon premier bilan de compétences téléchargement
  • téléchargement epub La délicatesse
  • TÉLÉCHARGEMENTS Les Sangdonneurs - Tome 1 Le jardin maudit - Les Sangdonneurs 1
  • TÉLÉCHARGEMENTS La chair fraîche et autres textes
  • PDF Equality and Diversity Companies under challenge téléchargement
  • Télécharger Pdf Les loups du millénaire Tome 5
  • Lire en ligne Beg Me Please Deluxe Edition - Queens Knights 1
  • Pdf ePub Last Customer A Shoe Store Fantasy par Danny Smallwood téléchargement ebook
  • Lire en ligne Black Devils Tome 2
  • télécharger pdf Above Clouds
  • 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-14 22:57:10
Previous
Deletes a pet
Built with