My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Sweetpea by C. J. Skuse
  • PDF EPUB Download Final Victim A completely gripping crime thriller packed with suspense by Gregg
  • Palestine and Israel Understanding Encounters by Max L Carter on Audiobook New
  • Download Pdf Unraveling Your Relationship with Money Ditch Your Money Trauma So You Can Live an Abun
  • Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham on Iphone New Fo
  • DOWNLOAD PDF EPUB A Domestic Cook Book Containing a Careful Selection of Useful Receipts for the K
  • Download PDF Scattered Showers Stories by Rainbow Rowell
  • PDF Kindle Letters to Penthouse XXV Shes Mine Shes Yours Shes Wild by Penthouse International
  • The Dark Coil Damnation by Peter Fehervari on Iphone New Format
  • The World War II Bond Campaign by Lawrence R. Samuel on Ipad
  • PDF DOWNLOAD The Things Gods Break Deluxe Limited Edition by Abigail Owen on Iphone
  • Fundamentally A Novel by Nussaibah Younis on Ipad
  • Hits Flops and Other Illusions My Fortysomething Years in Hollywood by Ed Zwick on Iphone New Form
  • download pdf Sallys Lament A Twisted Tale by Mari Mancusi
  • Read online Tell Me What You Did A Novel by Carter Wilson
  • epub download That Time I Got Drunk and Yeeted a Love Potion at a Werewolf by Kimberly Lemming
  • Read pdf The Queens of Crime A Novel by Marie Benedict
  • PDF EPUB Download Frontier Courtship Hideaway Home by Valerie Hansen Hannah Alexander Full Book
  • PDF EPUB Download The Breakthrough Code A Story About Living A Life Without Limits by Full Book
  • Pdf ePub Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor Eric F
  • Read pdf Dragon Age Tevinter Nights by Patrick Weekes
  • download pdf Medicinal Lichens Indigenous Wisdom and Modern Pharmacology by Robert Dale Rogers Jas
  • PDF Download Alfredo Paredes at Home by Alfredo Paredes Brad Goldfarb
  • Averted Vision by BW Moran on Audiobook New
  • PDF Kindle The Making of Baron Haversmere by Carol Arens
  • Billy the Kid The Life Behind the Legend by George R. Matthews on Audiobook New
  • PDF Modern Mandarin Chinese Grammar A Practical Guide by Claudia Ross Jing-heng Sheng Ma Pei-Chia
  • DOWNLOADS A Night in the Lonesome October A Novel by Roger Zelazny
  • PDF EPUB Download Rustler Mountain by Maisey Yates Full Book
  • pdf download The Blighted Stars by Megan E. OKeefe
  • PDF Kindle Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis on Audiobook Ne
  • PDF DOWNLOAD Star Wars The Secrets of the Clone Troopers by Marc Sumerak Alberto Buscicchio on Ip
  • If Cats Disappeared from the World A Novel by Genki Kawamura Eric Selland on Iphone New Format
  • Download PDF Narrative of the Life of Frederick Douglass by Frederick Douglass
  • 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-11 21:57:15
Previous
Deletes a pet
Built with