My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Lire en ligne Legacy Tome 3
  • téléchargement epub Procrastination Breaking the Habit - Mindscapes Navigating the Psyche 1
  • TÉLÉCHARGER PDF EPUB Dithmarscher Jakobsweg - Jakobspilgern mit Hund auf der Westküstenroute der V
  • Lecture en ligne Ebook Chroniques euréliennes
  • PDF Kindle Equality and Diversity Companies under challenge par Yves Barou
  • TÉLÉCHARGEMENTS Jouer nest pas gagner
  • PDF Un chef dans ma cuisine avec Thermomix - 9 chefs revisitent les meilleures recettes Thermomix
  • PDF A Wife to Love Vol. 1 - A Wife to Love 1 par Yoo Songjoo
  • Télécharger PDF Le miracle de la détoxination
  • PDF Kindle Her Mistress Teaches Him How To Do It Sordid Liaisons 2 BDSM Age Gap Voyeur Humiliation
  • Pdf ePub Une étrange défaite - Sur le consentement à lécrasement de Gaza par Didier Fassin téléchar
  • Pdf ePub Hustle Heat par Chris Berry téléchargement ebook
  • Télécharger PDF Domhan Thios Tome 4
  • PDF Red Sonja Tome 2 par Gail Simone Walter Geovani
  • TÉLÉCHARGER PDF EPUB Last Second Chance - The Trouble with Weddings 5
  • Kindle Reminders of him téléchargement
  • Pdf ePub The Shadowed Foe Deaths Dragon Book 3 - Deaths Dragon 3 par Mac Flynn téléchargement eboo
  • Télécharger Pdf Modern Romance January 2024 Books 5-8 - The Bump in Their Forbidden Reunion The Fast
  • téléchargement epub Summer with the Single Dad - The Single Dads of San Camanez The Brew Brothers 2
  • téléchargement pdf Les califes maudits Tome 2
  • Télécharger Pdf Mourir dans la dignité - Corps et Âme lunion indissoluble
  • télécharger pdf La machine à gagner - Révélations sur le RN en marche vers lElysée
  • téléchargement epub Capital rose
  • TÉLÉCHARGER PDF EPUB Bound by Duty Mafia Romance
  • Pdf ePub Gray - Eye Candy Ink Second Generation 4 par Shaw Hart téléchargement ebook
  • Kindle Lalimentation intuitive - Le grand livre téléchargement
  • Télécharger Pdf La Bible racontée aux enfants en 365 histoires
  • Pdf ePub 15 histoires dexpédition inédites qui ont changé ma vie par Sarah Marquis téléchargement e
  • Lecture en ligne Ebook My Forbidden Billionaire Enemies to Lovers Romance - Blue Sky Empire 2
  • Télécharger Pdf The Everybody Experiment
  • TÉLÉCHARGER PDF EPUB Mathématiques MPSI - Tout-en-un
  • Lire en ligne LAnge de la Nuit Tome 2
  • Pdf ePub Enjoying Mr. Hardwood par Christine Gray téléchargement ebook
  • PDF Diesel - Dark Falcons MC 4 par Em Petrova
  • PDF Voyage autour du monde par Louis-Antoine De Bougainville
  • Lire en ligne Bonds of the Wolf - The Wild Hunt Legacy 7
  • 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-10 22:47:15
Previous
Deletes a pet
Built with