My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGEMENTS Sa préférée
  • PDF Le serpent vert téléchargement
  • Télécharger Pdf Entwined Passion
  • Lecture en ligne Ebook Hereafter Lies R.I.P. - HEREAFTER LIES 1
  • Pdf ePub A Senhora de Wildfell Hall par Anne Brontë téléchargement ebook
  • TÉLÉCHARGEMENTS Letzte Ausfahrt Mekka - Nach einer wahren Geschichte
  • téléchargement pdf Mille Baisers pour un garçon
  • Lire en ligne Sable Peak - The Edens 6
  • Télécharger PDF Fin de règne - Où va la monarchie britannique les derniers scandales révélés
  • PDF Kindle Mariés jusquà Noël par Christine Rimmer
  • Lecture en ligne Ebook Chroniques euréliennes
  • Télécharger Pdf Attachants adorables... mais parfois insupportables - Le guide pour comprendre et
  • TÉLÉCHARGER PDF EPUB A Wishful Hope - Hope Ever After 15
  • Kindle Le cri du geai - Espace sous occupation sensible téléchargement
  • TÉLÉCHARGEMENTS LHéritage fossile
  • TÉLÉCHARGEMENTS Batman Spawn
  • Lire en ligne Christmas Stories Omnibus
  • téléchargement epub De bruit de fureur Tome 1
  • téléchargement pdf 10 Book Ultimate Cuckold Box Set - Mona Rivers Box Sets 1
  • PDF Lhomme venu de la mer par Michelle Styles Annie Legendre
  • PDF The Power of Self-Control téléchargement
  • PDF La prochaine fois que tu mordras la poussière téléchargement
  • téléchargement epub Bioénergie - Approche bioénergétique des phénomènes cosmotelluriques des ondes
  • télécharger pdf La carte des différences culturelles - 8 clés pour travailler à linternational
  • téléchargement pdf Commencements - Recueil de contes
  • Pdf ePub Everybody Loves Polar Bears - A Polar Paired Romantic Comedy par téléchargement ebook
  • Pdf ePub Ces jours qui disparaissent par Timothé Le Boucher téléchargement ebook
  • Pdf ePub Courir ou mourir par Kilian Jornet téléchargement ebook
  • Lecture en ligne Ebook Pour les générations futures
  • PDF Silence je chute téléchargement
  • Lecture en ligne Ebook Origin A Prequel to Beacon - The Hero of Heartland - The Hero of Heartland 0
  • Télécharger Pdf Sa Majesté des mouches
  • PDF The Home Chosen par AMEYA VATSA
  • Lecture en ligne Ebook Nonnenbourg
  • téléchargement epub Amérique latine les nouveaux conflits
  • TÉLÉCHARGEMENTS His Curvy Beauty Books 7-9 - Curvy Collections 3
  • Télécharger Pdf Gâteaux de mamie
  • Pdf ePub Strategor - 8e éd. - Toute la stratégie de la start-up à la multinationale par Bernard Ga
  • PDF La voix rauque téléchargement
  • PDF Kindle Owls Lesson par Nick Butterworth
  • Pdf ePub Social Media Management par téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Zakura 2 Aftermath
  • télécharger pdf Le bal des voleurs
  • TÉLÉCHARGER PDF EPUB Living Loving Longing Lisbon - Living Loving Longing Lisbon 2
  • Kindle Hadès Perséphone Tome 2 téléchargement
  • télécharger pdf Tino un merle au jardin
  • Lecture en ligne Ebook Ich werde meinen Chef fertigmachen
  • télécharger pdf 3 Indian Bhabhi Sex Stories
  • Télécharger Pdf The impact of internet in this modern world
  • Lecture en ligne Ebook Lola
  • 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-15 09:32:35
Previous
Deletes a pet
Built with