My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Attachants adorables... mais parfois insupportables - Le guide pour comprendre et résoud
  • Télécharger Pdf A Wishful Hope - Hope Ever After 15
  • téléchargement pdf Vallée dAoste
  • téléchargement pdf Guide du Routard Naples et la côte amalfitaine 2024 25
  • Télécharger Pdf La fourmi de lombre
  • PDF The Adventures Of Sunny and the Solar System - DISCOVERY SERIES téléchargement
  • Kindle Fleuves - Lextraordinaire voyage de leau téléchargement
  • téléchargement pdf The Seven Stars - Celestial Guardians Series 2
  • PDF John Laras The Samaritan Themes and Elements of Style - A Guide to Reading John Laras The Samar
  • PDF Les favorites de Charles VII par Olivier Lechevrel
  • PDF La puissance de lacceptation par Lise Bourbeau
  • Pdf ePub Noubliez pas que cest moi qui vous paie par Lucie Cayer téléchargement ebook
  • télécharger pdf Einfache Erklärungen zu allen Satzgliedern - Teil 4 Die Satzglieder
  • PDF Immorales - Histoires BDSM au féminin par Octavie Delvaux Gala Fur Chloé Saffy Clarissa Riv
  • téléchargement epub Sable Peak - The Edens 6
  • télécharger pdf La comptabilité analytique pour les Nuls
  • téléchargement epub La vie heureuse
  • téléchargement epub La cinquième saison - Un roman vénitien
  • Lire en ligne Fated Mates - The Real Shifters of Oregon 3
  • PDF Kindle Rosie - The Milky Way Hucow Farm 3 par X. Callisto
  • Pdf ePub Guide du Routard Istanbul 2020 21 par téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Le théâtre iranien en transition - Les oeuvres de Bahram Beyzaie
  • télécharger pdf Evidence Based Practice en rééducation - Démarche pour une pratique raisonnée
  • Lecture en ligne Ebook Les Renegades Tome 3
  • PDF Imprévisible Boss par Eugénie Dielens
  • Télécharger Pdf Hereafter Lies R.I.P. - HEREAFTER LIES 1
  • Lire en ligne I Want To Be A Successful Entrepreneur. Qualities In The Profile Of An Entrepreneur T
  • télécharger pdf Law Of Attraction Manifestation Bundle 6 Ready-To-Use Guided Manifestations Session
  • Pdf ePub Commando Club Curve 15 - Crowns of Chaos MC Series par JA Lafrance téléchargement ebook
  • TÉLÉCHARGER PDF EPUB Sangs Eternels Forever Lintégrale 3 tomes - Saga bit lit Coffret 2 Univers Sa
  • Kindle Captive-Moi Une Romance Milliardaire - Captive-Moi 9 téléchargement
  • Kindle The 13 of Hearts - The Heart stories 6 téléchargement
  • TÉLÉCHARGEMENTS Les animaux ont-ils une culture
  • PDF Jai tué - Suivi de Jai saigné par Blaise Cendrars Christine Le Quellec Cottier
  • TÉLÉCHARGER PDF EPUB Inconsolable
  • PDF Le vide téléchargement
  • télécharger pdf Les loups du millénaire Tome 2
  • TÉLÉCHARGEMENTS Shopify Mastery The Ultimate Guide to E-commerce Success
  • TÉLÉCHARGEMENTS Sombrer - Le Retour de la siréne 2
  • PDF Stories of Resilience Journeys of Hope and Growth Turning Points of Transformation - Worldwide
  • téléchargement pdf The Hunchback of Notre-Dame
  • Pdf ePub Le temps glisse le long des jours par Nane Couzier téléchargement ebook
  • Lecture en ligne Ebook Beneath Her Armor - Chained by Fate 3
  • Pdf ePub Goldman par Ivan Jablonka téléchargement ebook
  • Lire en ligne Villes terrestres - Petit manuel décologie urbaine
  • Lire en ligne 50 activités ludiques autour de la lecture - Jaccompagne mon enfant dans son apprenti
  • Lire en ligne The Wealth Mindset Mastering Money for Lasting Prosperity
  • Kindle Creuser téléchargement
  • Télécharger Pdf Invincible Cheat System in Isekai - Invincible Cheat System in Isekai 5
  • Lecture en ligne Ebook Capacidades Empáticas e Psíquicas Um Guia de Sobrevivência para Pessoas Altam
  • 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-13 22:43:10
Previous
Deletes a pet
Built with