My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Geiger Volume 2 The Nuclear Knight by Geoff Johns Gary Frank Brad Anderson download eboo
  • Pdf ePub Dragon and Chameleon 02 by RYO ISHIYAMA download ebook
  • pdf download The Bog Wife A Novel by Kay Chronister
  • PDF EPUB Download The Bastard Instrument A Cultural History of the Electric Bass by Brian F. Wright
  • PDF The Baby Swap An addictive and unputdownable psychological thriller with a heart-stopping twist
  • Download Pdf The Edge of Nowhere by William W Johnstone J A Johnstone
  • download pdf My Instant Death Ability Is So Overpowered No One in This Other World Stands a Chance
  • Download PDF Kei X Yaku Bound By Law 4 by Yoshie Kaoruhara
  • PDF The Hidden Globe How Wealth Hacks the World by Atossa Araxia Abrahamian
  • download pdf Marvel Anatomy A Scientific Study of the Superhuman by Marc Sumerak Jonah Lobe Danie
  • Download Pdf A Hasty Betrothal by Jessica Nelson
  • Sweet Tooth 100 Desserts to Save Room For A Baking Book by Sarah Fennel on Iphone New Format
  • Download PDF Wonders of the Heart by Ruth Scofield
  • The Case Files of Jeweler Richard Light Novel Vol. 6 by Nanako Tsujimura Utako Yukihiro on Iphone N
  • PDF EPUB Download White Bird A Novel Based on the Graphic Novel by R. J. Palacio Erica S. Perl Fu
  • pdf download If I Must Die Poetry and Prose by Refaat Alareer Yousef M. Aljamal Susan Abulhawa
  • DOWNLOADS 86--Eighty-Six Vol. 11 light novel Dies Passionis by Asato Asato Shirabii
  • Download Pdf Acts of Forgiveness A Novel by Maura Cheeks
  • PDF EPUB Download The Art of The Batman by James Field Matt Reeves Full Book
  • PDF EPUB Download The Hunchback of Notre-Dame by Victor Hugo Full Book
  • PDF The Soul of Wealth 50 reflections on money and meaning by Daniel Crosby
  • DOWNLOADS Refusing Compulsory Sexuality A Black Asexual Lens on Our Sex-Obsessed Culture by Sherrond
  • DOWNLOAD PDF EPUB Tsunami Womens Voices from Mexico by Julia Sanches Diana J. Torres Sara Uribe
  • Online Read Ebook One Day in October by Yair Agmon Oriya Mevorach
  • Download PDF Mothers Day MiracleBlessed Baby by Lois Richer
  • PDF DOWNLOAD Three Grumpy Groomsmen by Emma Foxx on Iphone
  • DOWNLOAD PDF EPUB Normal People A Novel by Sally Rooney
  • Online Read Ebook How to Carry What Cant Be Fixed A Journal for Grief by Megan Devine
  • DOWNLOAD PDF EPUB Finding Avalon The Quest of a Chaosbringer Volume 5 by Akito Narusawa KeG Tom
  • Read Pdf The Ripple Effect by Rebecca Caprara
  • Online Read Ebook The Dungeon of Black Company Vol. 11 by Youhei Yasumura
  • Online Read Ebook Black Butterflies A novel by Priscilla Morris
  • Harlequin Presents March 2025 - Box Set 2 of 2 by Jackie Ashenden Julia James Kali Anthony Trish
  • Read pdf The Russian-Ukrainian War 2023 A Second Year of Hell and the Dawn of Drone Warfare by Jo
  • pdf download Crush A Novel by Ada Calhoun
  • DOWNLOADS The Hidden Life of Cecily Larson A Novel by Ellen Baker
  • 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
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-08 01:13:45
Previous
Deletes a pet
Built with