My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGEMENTS The Adventures Of Sunny and the Solar System - DISCOVERY SERIES
  • Pdf ePub File dans ta chambre - Offrez des limites éducatives à vos enfants par Caroline Goldman t
  • Kindle Lieutenant Eve Dallas Tome 56 téléchargement
  • télécharger pdf She Looked Good in Pearls - Danny Diamond Erotic Mysteries 1.3
  • téléchargement pdf Guide du Routard Naples 2023 24
  • TÉLÉCHARGEMENTS Tough Girls - Saison 1- Romance New Adult français
  • Kindle Un monde presque parfait téléchargement
  • TÉLÉCHARGEMENTS Clément chez les calmistes
  • télécharger pdf Alice Guy
  • téléchargement pdf Ecrire sa vie
  • PDF Kindle Les meilleurs gâteaux de mamie pour grands et petits par Larousse
  • Kindle Fionas Homecoming - Bradford Hall 3 téléchargement
  • téléchargement epub LEclair de génie Café
  • téléchargement epub Lonely Wolf
  • TÉLÉCHARGEMENTS Wanderlust Exploring the World One Journey at a Time
  • téléchargement epub The Real Nobel Peace Prize A Squandered Opportunity to Abolish War
  • Télécharger Pdf Guide du Routard Colombie 2023 24
  • Lecture en ligne Ebook Yoga - La voie de la santé holistique
  • PDF Mude O Jeito de Pensar Como Revolucionar Sua Mente e Alcançar Seus Objetivos téléchargement
  • PDF Ghosts of the Crusade - Parisian Ghosts 2 par Janna Ruth
  • télécharger pdf Connellys Flame - Megalodon Team 3
  • Télécharger Pdf A Taste of Honey
  • Pdf ePub The War of the Worlds par H.G. Wells téléchargement ebook
  • téléchargement epub Mémo espagnol B1-B2
  • Lecture en ligne Ebook Wordwright - Soulsmith 3
  • Télécharger Pdf Jacky Leon Tome 2
  • Lire en ligne Stadtrundgang - Erfurt im Nationalsozialismus
  • téléchargement epub Mon gant dautomassage - Relaxation et bien-être
  • Télécharger PDF Emotional Intelligence 7 Secrets to Building Incredible Relationships Achieve Succe
  • PDF Kiara diamant écorché par le sang Tome 1 téléchargement
  • Télécharger PDF Be Fruitful and Multiply - 3 3
  • Pdf ePub Eugénie Grandet - Classiques et Patrimoine par Honoré Balzac Honoré de Balzac Stéphane M
  • téléchargement pdf Les dinosaures
  • Télécharger Pdf The Four Arts series
  • Télécharger PDF Le livre de tous les livres
  • Kindle Summer with the Single Dad - The Single Dads of San Camanez The Brew Brothers 2 téléchargem
  • Pdf ePub Déco de chambres denfants en feutrine - 4 univers féérique cosmique cocoon de douceur
  • téléchargement pdf Homo chaoticus - Révolution dans lévolution
  • PDF Les derniers jours de nos pères téléchargement
  • Télécharger Pdf Challah la danse
  • Télécharger PDF Zuliq And the Chocolate Chip Cookie Crumb Trail
  • Télécharger Pdf A Wishful Hope - Hope Ever After 15
  • PDF Kindle Das passive Online Kurs Business - Finanzielle Freiheit mit eigenen Online Kursen auf Au
  • Lire en ligne Herbier - 100 dessins à colorier
  • Kindle The Sacrifice Duet - The Sacrifice téléchargement
  • Pdf ePub La grande aventure - Patrimoine culturel immatériel de Guadeloupe par Steve Gadet téléchar
  • TÉLÉCHARGEMENTS Huhito Fables Vol.14 - Fables 14
  • télécharger pdf Overwork No More An Essential Guide to Reclaim Your Time Off Find Your Balance and
  • TÉLÉCHARGER PDF EPUB Money-Wise Practical Steps to Build a Substantial Nest Egg
  • Télécharger PDF Crazy Boss
  • 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 03:48:01
Previous
Deletes a pet
Built with