My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Against Platforms Surviving Digital Utopia by Mike Pepi download ebook
  • Read Pdf Street Smart Chess by Axel Smith
  • Kingpin A Joe DeMarco Thriller by Mike Lawson on Audiobook New
  • Daughters of the Blue Moon by Millie Abecassis on Audiobook New
  • Flavorama A Guide to Unlocking the Art and Science of Flavor by Arielle Johnson René Redzepi on Aud
  • The Stolen Queen A Novel by Fiona Davis on Audiobook New
  • Pdf ePub Robert B. Parkers Buried Secrets by Christopher Farnsworth download ebook
  • epub download The Master and Margarita Mirra Ginsburg Translation by Mikhail Bulgakov Diana Burgin
  • DOWNLOADS The Complete Developer Master the Full Stack with TypeScript React Next.js MongoDB and
  • PDF EPUB Download The House of My Mother A Daughters Quest for Freedom by Shari Franke Full Book
  • download pdf On Thin Ice by Jessica Kim
  • PDF DOWNLOAD Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda Stewa
  • Read Pdf Beyond Anxiety Curiosity Creativity and Finding Your Lifes Purpose by Martha Beck
  • PDF How to Disappear A Photographic Portrait of Radiohead by Colin Greenwood
  • Read online An Endless Love A Novel of Forever by Emily Sue Harvey
  • Online Read Ebook Dont Eat the Cleaners Tiny Fish with a Big Job by Susan Stockdale
  • PDF EPUB Download Rez Ball by Byron Graves Full Book
  • Online Read Ebook Pornography Men Possessing Women by Andrea Dworkin
  • PDF A Few Rules for Predicting the Future An Essay by Octavia E. Butler Manzel Bowman
  • Read pdf Stomp Kick Love Vol. 1 by Sumi Ichiya Sarah Burch
  • Download Pdf The Secrets We Hide by Berlin Wick
  • Heart Breath Mind Conquer Stress Build Resilience and Perform at Your Peak by Leah Lagos on Iphone
  • The Hurricane Girls by Kimberly Willis Holt on Audiobook New
  • epub download The Bastard Instrument A Cultural History of the Electric Bass by Brian F. Wright
  • download pdf Trans Technologies by Oliver L. Haimson
  • DOWNLOADS 100 Dives of a Lifetime The Worlds Ultimate Underwater Destinations by Carrie Miller Bria
  • PDF EPUB Download A Flash of Golden Fire The Birth Death and Rebirth of the Modern Soul in Coler
  • Dark Hope by Christine Feehan on Ipad
  • download pdf The Dryad Storm by Laurie Forest
  • I Love You So Much Its Killing Us Both A Novel by Mariah Stovall on Ipad
  • PDF EPUB Download I Am Money by Julia Cook Garrett Gunderson Josh Cleland Full Book
  • PDF EPUB Download The Devils Charm by Megan Frampton Full Book
  • DOWNLOAD PDF EPUB Snapshots in a Life by James Ballentine
  • Download PDF Slow Jogging Lose Weight Stay Healthy and Have Fun with Science-Based Natural Runnin
  • Designing Brand Identity A Comprehensive Guide to the World of Brands and Branding by Alina Wheeler
  • Pdf ePub Mastering Machine Knitting From the Thread to the Finished Garment. Updated and revised ne
  • PDF EPUB Download Cassiels Servant by Jacqueline Carey Full Book
  • PDF Download We Lived on the Horizon A Novel by Erika Swyler
  • 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-15 09:08:15
Previous
Deletes a pet
Built with