My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Chien 51 par Laurent Gaudé
  • téléchargement pdf Comment peut-on être français
  • Lecture en ligne Ebook Little Lou Ugly Jack Prophet John - Character of the Song 1
  • Télécharger Pdf Winterzauber - Geschichten für die Weihnachtszeit
  • TÉLÉCHARGEMENTS Ralph Azham Tome 12
  • TÉLÉCHARGEMENTS Le faiseur de rêves Tome 1
  • PDF Kindle Stories of Resilience Journeys of Hope and Growth Turning Points of Transformation - Wor
  • Télécharger Pdf Se libérer du connu
  • PDF Fallen Angel par Camille Creati
  • Télécharger PDF Le grand guide Major Mouvement pour soigner vos douleurs
  • TÉLÉCHARGER PDF EPUB Athéna Tome 05 - Tempête dans les bandelettes
  • Kindle Black Sabbath Israel a Jewish Supremacist Nation a Terrorist State an Apartheid Regime a
  • TÉLÉCHARGEMENTS The Ravenhood Tome 1
  • Lecture en ligne Ebook Mangaka Tome 1
  • Pdf ePub La guerrière des glaces par Sophie Dabat téléchargement ebook
  • PDF Kindle Ein Pinselstrich zwischen uns - Teil 2 - Impastowirbel par Celeste Draven
  • PDF Kindle The Surrender of Seona MacKai - Seonas Story MacKai Brides Book Three - MacKai Brides
  • Télécharger PDF Les Légendaires Tome 14
  • téléchargement epub Die falsche Energiewende - Die fatalen Fehler der deutschen Energiepolitik
  • télécharger pdf KAMOURASKA
  • Lire en ligne Si je dois te trahir
  • Télécharger PDF Twisted Love - Tome 1 - Love
  • TÉLÉCHARGER PDF EPUB Alice and Meg - Girls Trip - Fallen Lords M.C. 13
  • TÉLÉCHARGER PDF EPUB Schicksal eines siebenbürgisch-sächsischen Dorfes - Ein zu Beginn des 13. Jh.
  • TÉLÉCHARGEMENTS My Broken Angel
  • Lire en ligne Manifest Your Soulmate
  • PDF Verity téléchargement
  • PDF Lhomme des Mille Détours téléchargement
  • Télécharger PDF Oliver Twist
  • télécharger pdf Doing What Matters - The Power of Purposeful Productivity
  • TÉLÉCHARGEMENTS Crazy Boss
  • TÉLÉCHARGER PDF EPUB Tough Girls - Saison 1- Romance New Adult français
  • TÉLÉCHARGEMENTS New To Me - Firefighters of Jacaranda Bay 3
  • Lecture en ligne Ebook La Bible racontée aux enfants en 365 histoires
  • téléchargement pdf Outfocusing the Goldfish Reprogram Your Brain for Sustained Focus and Long-Term A
  • Lire en ligne Nous rêvions juste de liberté
  • Lecture en ligne Ebook Charity Jones - 2 - Dans la gueule du loup
  • Pdf ePub André Brouillet - Peintre de la Belle Epoque en Poitou à Paris à New York par Michèle Fr
  • PDF Muerte Clínica par Missael Alejandro Reyes Burcia
  • Pdf ePub La Communication NonViolente cest malin - En famille en couple au travail... Comment pa
  • Kindle Unter Feuer Band 4 - Unter Feuer 4 téléchargement
  • Lire en ligne Plötzlich Chef - Praktische Werkzeuge und Strategien um als neue Führungskraft erfol
  • téléchargement epub La décroissance libertaire - Une étape cruciale
  • Télécharger PDF Scott Pilgrim Intégrale
  • téléchargement pdf Fantastic Four lIntégrale Tome 4
  • Kindle Le Courage des innocents téléchargement
  • Pdf ePub Skizzen von der Erde - Lyrik und Prosa par téléchargement ebook
  • PDF Kindle Huhito Fables Vol.4 - Fables 4 par
  • Kindle The elements - Tome 1 - The air he breathes téléchargement
  • TÉLÉCHARGEMENTS Jacky Leon Tome 2
  • 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-09 00:33:55
Previous
Deletes a pet
Built with