My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Menopause Brain New Science Empowers Women to Navigate the Pivotal Transition
  • Download Pdf Lucila Spanish Edition Una novela sobre la vida de Gabriela Mistral by Patricia Cerda
  • PDF DOWNLOAD Bordeaux The Smart Travellers Wine Guide by Georgie Hindle on Iphone
  • Love is an Illusion Vol. 5 by Fargo on Iphone New Format
  • Online Read Ebook The Winterton Deception 2 Fault Lines by Janet Sumner Johnson
  • Rich Routines Simple Habits That Enrich Every Area of Your Life by Steve Houghton on Iphone New Form
  • epub download Five-Year Millionaire A Roadmap for Investing in the Stock Market Wealth Accumulation
  • DOWNLOAD PDF EPUB The Power of Dua by Aliyah Umm Raiyaan
  • The How To Study Chess on Your Own Workbook Exercises and Training for Chess Improvers 1500 - 1800 E
  • The Complete Summer I Turned Pretty Trilogy The Summer I Turned Pretty Its Not Summer Without You We
  • download pdf The Burning God by R. F. Kuang
  • Read online Just Last Night A Novel by Mhairi McFarlane
  • pdf download The Too-Perfect Saint Tossed Aside by My Fiancé and Sold to Another Kingdom Manga Vol.
  • pdf download I Am Salvation by Helen Hardt
  • Download Pdf How to Paint Landscapes Quickly and Beautifully in Watercolor and Gouache by Nathan Fow
  • PDF EPUB Download Cannabis Farming How to Grow Harvest and Process Organic Field-Grown Cannabis
  • Read online Terry and the Pirates The Master Collection Vol. 9 1943 - Terry Earns His Wings by Milto
  • Download Pdf Endless A Starcrossed Novel by Josephine Angelini
  • PDF Save the Pearl Tales of the Teenage Mutant Ninja Turtles by Matt Huntley Nate Lovett
  • DOWNLOADS El recluso by Freida McFadden Santiago del Rey Farrés
  • Follow the River by CE Ricci on Iphone New Format
  • Download Pdf A Rebel Without Claws Southern Charm Book One by Juliette Cross
  • DOWNLOADS Harlem Rhapsody by Victoria Christopher Murray
  • PDF Isaac Murphy The Rise and Fall of a Black Jockey by Katherine C. Mooney
  • Download Pdf Passage to Dawn Legacy of the Drow 4 Legend of Drizzt 10 by R. A. Salvatore
  • PDF DOWNLOAD I Was Reincarnated as the Heroine on the Verge of a Bad Ending and Im Determined to
  • Read Pdf Dream Girl Drama A Novel by Tessa Bailey
  • Pdf ePub The Ends of Things A Novel by Sandra Chwialkowska download ebook
  • RecipeTin Eats Dinner 150 Recipes for Fast Everyday Meals by Nagi Maehashi on Audiobook New
  • DOWNLOADS Omaha Beach D-Day June 6 1944 by Joseph Balkoski
  • Read pdf When Things Dont Go Your Way Zen Wisdom for Difficult Times by Haemin Sunim Charles La S
  • Read Pdf Helgoland Making Sense of the Quantum Revolution by Carlo Rovelli Erica Segre Simon Car
  • Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis D.C. on Iphone Ne
  • Mars. Photographs from the NASA Archives by Emily Lakdawalla James L. Green Margaret Weitekamp Ni
  • PDF EPUB Download We Hold These by Casey Burgat Full Book
  • Read online 1984 75th Anniversary by George Orwell Dolen Perkins-Valdez Sandra Newman
  • Pdf ePub Soft Core A Novel by Brittany Newell download ebook
  • pdf download Hot Bare-Naked Beauties Photography without Limits by Steven Andres
  • Read pdf Oyster Perpetual Submariner The Watch that Unlocked the Deep by Nicholas Foulkes
  • DOWNLOADS The Money-Saving Garden Year A Month-by-month Guide to a Great Garden that Costs Less by A
  • 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-03 22:33:50
Previous
Deletes a pet
Built with