My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Milk Street Bakes A Baking Book with 200 Sweet and Savory Recipes by Christopher
  • Online Read Ebook Easy Learning German Dictionary Trusted support for learning by Collins
  • Read Pdf To Heights and unto Depths Letters from the Colorado Trail by John Nepil
  • download pdf Lonely Planet Malta Gozo by Brett Atkinson
  • PDF DOWNLOAD Lovemaking How to Talk about Sex with Your Spouse by Renzo Ortega Monica Ortega Emi
  • download pdf The Psychology of the Armenian Genocide by George Green
  • epub download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • Read Pdf Fate of the Sun King by Nisha J. Tuli
  • epub download The Ultimate Retirement Guide for 50 Winning Strategies to Make Your Money Last a Life
  • Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen on Iphone New Format
  • Table for 51 Lessons Learned from Sharing Meals Across America by Shari Leid on Iphone New Format
  • Read online You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by Sh
  • PDF DOWNLOAD Angel Answers Pocket Oracle Cards A 44-Card Deck and Guidebook by Radleigh Valentine
  • Read pdf Five Nights at Freddys Return to the Pit Interactive Novel 2 by Scott Cawthon Adrienne K
  • Read Pdf Sword and Scimitar Fourteen Centuries of War between Islam and the West by Raymond Ibrahi
  • Download PDF Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yuk
  • PDF The Iron Flower by Laurie Forest
  • DOWNLOAD PDF EPUB Our Hideous Progeny A Novel by C.E. McGill
  • DOWNLOADS Gain of Function by Nicholas G. Evans
  • DOWNLOADS Lonely Planet Pocket Bilbao San Sebastian by Isabel Albiston
  • DOWNLOAD PDF EPUB Laid-Back Camp Vol. 16 by Afro Amber Tamosaitis
  • PDF EPUB Download All You Need Is Love The Beatles in Their Own Words Unpublished Unvarnished and
  • Online Read Ebook What Happens at the Beach. by Rachael Stewart
  • Pdf ePub The Bachelors Unexpected Family by Lisa Carter download ebook
  • And Then Boom by Lisa Fipps on Iphone New Format
  • Pdf ePub Praise Me When Im a Good Boy by Yodaka Kuroi Emma Schumacker download ebook
  • Pdf ePub The Irresistible Urge to Fall for Your Enemy Book 1 of the Dearly Beloathed Duology by Bri
  • Pdf ePub The Crash by Freida McFadden download ebook
  • Read online A Cage of Crimson by K F Breene
  • Online Read Ebook Martyr by Kaveh Akbar
  • epub download Source Code My Beginnings by Bill Gates
  • Read Pdf Earthlings A Novel by Sayaka Murata Ginny Tapley Takemori
  • Online Read Ebook If You Want to Be Rich and Happy Dont Go to School Ensuring Lifetime Security for
  • PDF Kindle Intermezzo by Sally Rooney
  • DOWNLOADS AFTER The Graphic Novel Volume Two by Anna Todd
  • epub download Jujutsu Kaisen The Official Character Guide by Gege Akutami
  • Download Pdf Monster High Ever After High The Legend of Shadow High by Shannon Hale Dean Hale
  • PDF EPUB Download Pageboy A Memoir by Elliot Page Full Book
  • PDF Download A Love So Strong When Love Comes Home by Arlene James
  • PDF EPUB Download Claiming His Brothers Baby by Helen Lacey Full Book
  • The Art of Magic The Gathering - Ravnica by James Wyatt on Iphone New Format
  • Bound to the Shadow Prince by Ruby Dixon on Ipad
  • Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros on Ipad
  • PDF DOWNLOAD Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson on
  • DOWNLOADS The Most Heretical Last Boss Queen From Villainess to Savior Light Novel Vol. 8 by Tenichi
  • The Astrology Dictionary Cosmic Knowledge from A to Z by Donna Woodwell on Iphone New Format
  • Cuentos by Dan Henderson on Iphone New Format
  • The White House Physician A History from George Washington to Joe Biden 2d ed. by Ludwig M. Deppisc
  • pdf download Building Your Own Home A Comprehensive Guide for Owner-Builders by George Wilkie
  • PDF The Secret of The Fishing Box A reincarnation Mystery Across Lifetimes by Cleunir De Araujo
  • 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-09 21:22:15
Previous
Deletes a pet
Built with