My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Throttled by Lauren Asher
  • Read Pdf What Happens at the Beach. by Rachael Stewart
  • PDF Download Practical Optimism The Art Science and Practice of Exceptional Well-Being by Sue Va
  • epub download The Cambridge History of the Vietnam War Volume 2 Escalation and Stalemate by Andrew
  • PDF Download Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen
  • DOWNLOAD PDF EPUB Nuestra desquiciada historia de amor by Jandy Nelson
  • epub download Threat of Exposure A Thrilling Suspense Novel by Lynette Eason
  • PDF DOWNLOAD DEE The Silence Whispers by Brad Umphress on Iphone
  • SKin by Ibi Zoboi on Iphone New Format
  • Unstoppable Us Volume 2 Why the World Isnt Fair by Yuval Noah Harari Ricard Zaplana Ruiz on Ipad
  • PDF Kindle Now Youre Mine A Dark Stalker Romance by Morgan Bridges
  • PDF EPUB Download Murder Mayhem and Sex on the Beach by Alicia Gael Full Book
  • Online Read Ebook The Warrior Poet Way A Guide to Living Free and Dying Well by John Lovell
  • PDF EPUB Download Love Inspired Suspense March 2025 - Box Set 1 of 2 by Connie Queen Deena Alexande
  • PDF EPUB Download Wicked The Life and Times of the Wicked Witch of the West by Gregory Maguire Ful
  • pdf download MARVEL MASTERWORKS THE INVINCIBLE IRON MAN VOL. 18 by Dennis ONeil Marvel Various Luk
  • epub download Under the Millionaires Mistletoe The Wrong Brother Mistletoe Magic by Maureen Child S
  • Pdf ePub Twin Star Exorcists Vol. 33 Onmyoji by Yoshiaki Sukeno download ebook
  • PDF DOWNLOAD Royal Fiancée Required by Kali Anthony on Iphone
  • PDF EPUB Download Puzzled 4 Murder by J. C. Eaton Full Book
  • Download PDF Lights Out An Into Darkness Novel by Navessa Allen
  • Online Read Ebook Mirabelle and the Baby Dragons by Harriet Muncaster
  • PDF EPUB Download Lapvona A Novel by Ottessa Moshfegh Full Book
  • pdf download Indaba My Children African Folktales by Vusamazulu Credo Mutwa Vusamazulu C. Mutwa C
  • pdf download An ABC of Childhood Tragedy by Jordan B Peterson Juliette Fogra
  • DOWNLOAD PDF EPUB Everything Is Tuberculosis The History and Persistence of Our Deadliest Infecti
  • PDF EPUB Download You Are The Brand The 8-Step Blueprint to Showcase Your Unique Expertise and Build
  • Download Pdf Where Children Sleep by James Mollison
  • DOWNLOADS Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • Cult of the Lamb Vol. 1 The First Verse by Alex Paknadel Troy Little Nick Filardi Crank on Ipad
  • epub download The Short List How to Drive Business Development by Focusing on the People Who Matter
  • PDF DOWNLOAD A Circle of Uncommon Witches A Novel by Paige Crutcher on Iphone
  • Online Read Ebook Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kirre
  • Read Pdf The Last Hamilton A Novel by Jenn Bregman
  • Pdf ePub Murder on the Orient Express The Graphic Novel by Agatha Christie Bob Al-Greene download
  • PDF EPUB Download When the Sky Burned October 8 1871 by Liz Tolsma Full Book
  • pdf download A Language of Dragons by S. F. Williamson
  • Pdf ePub Bird Watchers Field Guide Sticker Logbook Identify 75 North American Birds by Chartwell B
  • 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 00:43:01
Previous
Deletes a pet
Built with