My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Kunsten at blive pensionist på fuldtid
  • téléchargement pdf Uncertain Endeavor - The Elopement Project 3
  • Pdf ePub Suplementos Que Mejoran Mi Salud par Roman Ing. Iván S. R. téléchargement ebook
  • téléchargement pdf Les Enchantés - Chronique dun majordome
  • PDF Der Drachenkuss Ein heißer Fantasy-Liebesroman téléchargement
  • télécharger pdf Journal dun noob Intégrale 1
  • Télécharger PDF Câlins assassins
  • Télécharger PDF Performer après 50 ans - Comment rester en forme et compétitif tout au long de sa vi
  • Pdf ePub The 13 of Hearts - The Heart stories 6 par Kay Springsteen téléchargement ebook
  • Télécharger Pdf Suplementos Que Mejoran Mi Salud
  • Lecture en ligne Ebook Joe Abercrombie - LIntégrale
  • PDF Kindle My Ántonia par Willa Cather Sara Wheeler
  • Télécharger PDF An Apple a day - Lessentiel de la grammaire et du vocabulaire anglais
  • Kindle Le bestial serviteur du pasteur Huuskonen téléchargement
  • Télécharger PDF Çhibone
  • Pdf ePub Les hommes viennent de Mars les femmes viennent de Vénus par John Gray téléchargement ebo
  • PDF Sudoku mystère par Jacques Lessard
  • PDF La fourmi de lombre par Richard Langen
  • PDF Kindle Karma and Happiness Strategies to Create a Positive Balance par
  • télécharger pdf Runaway Princess
  • PDF Kindle Les carmélites de Compiègne - Martyres de la révolution par Olivier Malcurat Marie Malc
  • téléchargement pdf Maitriser lanalyse technique avec Thami Kabbaj - 10 leçons pour gagner
  • Kindle Doing What Matters - The Power of Purposeful Productivity téléchargement
  • Lecture en ligne Ebook Coaching Ultime - Les clés de lentraînement individualisé
  • Lecture en ligne Ebook Les animaux ont-ils une culture
  • PDF Kindle From Friends To Forever - Book 2 2 par Hosikati
  • Télécharger PDF Corniche Kennedy
  • PDF La carte des différences culturelles - 8 clés pour travailler à linternational téléchargement
  • Lire en ligne Bulles de vie
  • TÉLÉCHARGER PDF EPUB Les silences des pères
  • PDF Kindle Iginapos ng Mahika - Batas ng Dragon 2 par Arielle Alia
  • PDF Young Pirates The Red Raven par Ron Knight
  • Télécharger PDF A contre-sens Tome 1
  • TÉLÉCHARGEMENTS blutband - Gedicht und Illustration von Vater und Sohn
  • Télécharger PDF Les tribulations dune caissière
  • 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-07 00:03:15
Previous
Deletes a pet
Built with