My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Mariés jusquà Noël téléchargement
  • PDF You Have the Power to Create Your Own World - Empowering Todays Christian Youth 1 par C.Orvill
  • TÉLÉCHARGER PDF EPUB I Want To Be A Successful Entrepreneur. Qualities In The Profile Of An Entrep
  • Télécharger PDF Les meilleurs gâteaux de Mamie pour grands et petits
  • Kindle Impénétrable téléchargement
  • PDF La taille de nos seins par Agnès Jaoui Cécile Partouche
  • Télécharger Pdf A Son as a Gift for the CEO
  • PDF Si je dois te trahir téléchargement
  • téléchargement pdf Boost Your E-Commerce Warehouse
  • TÉLÉCHARGER PDF EPUB Les aveuglés - Le palais des murmures
  • PDF Read My Eyes téléchargement
  • Lecture en ligne Ebook Comment les grands projets se réalisent - Les éléments inattendus qui jouent
  • PDF Vingt ans après téléchargement
  • TÉLÉCHARGEMENTS Les licornes
  • PDF Kindle La rééducation de lécriture de lenfant et de ladolescent - Pratique de la graphothérapi
  • Kindle La taille de nos seins téléchargement
  • téléchargement pdf Sa préférée
  • Pdf ePub Zone base vie par Gwenaëlle Aubry téléchargement ebook
  • TÉLÉCHARGEMENTS Horribles monstres - Un voyage au coeur de lhorreur
  • téléchargement epub Night Moves And other stories
  • téléchargement pdf Les soeurs DAdrienne
  • Télécharger Pdf Counterpoint
  • PDF Kindle Célèbre par Maud Ventura
  • TÉLÉCHARGEMENTS Stärke deinen Reichtum Die finanzielle Zukunft selbst in die Hand nehmen indem du d
  • Télécharger Pdf 10 Mindsets to Embrace For Teenage Success Happiness and A Determined Path in Life
  • TÉLÉCHARGER PDF EPUB La Bourse pour les nuls
  • TÉLÉCHARGER PDF EPUB The Light of Ramadan - Muslims 1
  • PDF Kindle Sable Peak - The Edens 6 par Devney Perry
  • Lire en ligne Goal Setting Simplified A No-Nonsense Guide to Achieving - The Self-Development Mini
  • téléchargement epub The Traveler - Love Hurts
  • téléchargement epub Dont blame me love made me crazy Tome 1
  • Télécharger PDF La décroissance libertaire - Une étape cruciale
  • TÉLÉCHARGER PDF EPUB Lieutenant Eve Dallas Tome 56
  • téléchargement pdf Légendes bouddhiques - Et autres contes surprenants
  • TÉLÉCHARGEMENTS Protége-Moi Vol. 3 - Protège-Moi 3
  • Kindle The Interview Masters Customer Service Manager - The Interview Masters téléchargement
  • Lecture en ligne Ebook Dictionnaire mini français-espagnol et espagnol-français
  • télécharger pdf Le Journal du capitaine Wentworth
  • télécharger pdf Hecatontagonal Stew
  • Kindle Capacidades Empáticas e Psíquicas Um Guia de Sobrevivência para Pessoas Altamente Sensíveis.
  • télécharger pdf Apocaline Tome 2
  • Kindle Lhumilité - Vives Flammes 333 téléchargement
  • TÉLÉCHARGER PDF EPUB Parler un jeu à deux - Un guide pratique pour les parents denfants présenta
  • télécharger pdf Muhammad lultime joyau de la prophétie - Le nectar cacheté
  • PDF Kindle La Maison aux esprits par Isabel Allende
  • Lecture en ligne Ebook Sexy Surprises Volume 7 24 Supernatural Stories
  • Pdf ePub Jimmys Swamp Years The Complete Collection par téléchargement ebook
  • PDF Rory Costas Tome 3 par Jami Gray Julie Nicey
  • Pdf ePub Flush par Virginia Woolf Catherine Bernard téléchargement ebook
  • Pdf ePub The Intruder 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 21:57:45
Previous
Deletes a pet
Built with