My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Trinity Puglias Son by Steven Zizza download ebook
  • PDF EPUB Download A Rumored Engagement by Lily George Full Book
  • PDF DOWNLOAD Everything is Fine Volume One A WEBTOON Unscrolled Graphic Novel by Mike Birchall on
  • Read pdf When the Clock Broke Con Men Conspiracists and How America Cracked Up in the Early 1990
  • Read Pdf Tabers Cyclopedic Medical Dictionary by Donald Venes MD MSJ
  • DOWNLOADS Flesh and Steel by Guy Haley
  • PDF DOWNLOAD Endoscopic Transorbital Surgery of the Orbit Skull Base and Brain by Theodore H. Sch
  • download pdf Amish Reckoning by Jocelyn McClay
  • PDF DOWNLOAD Peerless Novel Vol. 1 by Meng Xi Shi on Iphone
  • PDF EPUB Download Jeramiahs Power by Betsy Rose Wells Felipe Echevarria Full Book
  • PDF DOWNLOAD Elric of Melniboné The Elric Saga Part 1 by on Iphone
  • PDF EPUB Download Strangers Among Us Murder in a Small Town by L.R. Wright Full Book
  • Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexis Morgan Amie Denma
  • download pdf Boy Vs. Beast 3 Fire Beast by Mac Park
  • PDF EPUB Download Skin of a Sinner by Avina St. Graves Full Book
  • Pdf ePub The Atlas Complex by Olivie Blake download ebook
  • DOWNLOADS Secret Love by Willow Aster
  • Download PDF Reckless by Elsie Silver
  • PDF A Fortunes Redemption by Stella Bagwell
  • pdf download Friedrich Dürrenmatt Selected Writings Volume 1 Plays by Friedrich Dürrenmatt Joel A
  • epub download Sony a7 III Pocket Guide Buttons Dials Settings Modes and Shooting Tips by Rocky N
  • epub download Bone Pendant Girls by Terry S. Friedman
  • Read pdf Fuimos los afortunados by Georgia Hunter
  • pdf download Ascendance of a Bookworm Part 5 Volume 6 Light Novel by Miya Kazuki Yu Shiina Quof
  • PDF Download Bipolar Not So Much Understanding Your Mood Swings and Depression by Chris Aiken MD
  • Read pdf Day In Day Out by Hirune
  • Pdf ePub Deep Cuts A Novel by Holly Brickley download ebook
  • pdf download Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros
  • PDF Download Kingdoms of Faith A New History of Islamic Spain by Brian A. Catlos
  • Pdf ePub Tarot for Light Seers A Journey Through the Symbols Messages Secrets of the Cards by Ch
  • 5-Minute Clinical Consult 2024 Premium by Frank Domino on Audiobook New
  • download pdf Modern Epidemiology Edition 4 by Timothy L. Lash Associate Professor Tyler J. Vande
  • DOWNLOAD PDF EPUB The Katharina Code by Jïrn Lier Horst
  • Caseys Cases The Mysterious New Girl by Kay Healy on Ipad
  • PDF EPUB Download The Kew Book of Drawing Flora and Fauna 20 stunning step-by-step tutorials by Joy-
  • PDF EPUB Download Guy Bourdin Photofile by Gilles De Bure Full Book
  • DOWNLOAD PDF EPUB The Grey Wolf by Louise Penny
  • Read online George Michael A Life by James Gavin
  • DOWNLOADS The Book of Animal Secrets Natures Lessons for a Long and Happy Life by David B. Agus
  • Pdf ePub Death of the Author by Nnedi Okorafor download ebook
  • PDF Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Susannah Erwin
  • epub download Gender Magic Live Shamelessly Reclaim Your Joy Step into Your Most Authentic Self b
  • Read Pdf Rich Girl Caretaker 1 by Sakura Miwabe Yuusaku Sakaishi
  • epub download Averted Vision by BW Moran
  • Midnight on the Scottish Shore A Novel of World War II by Sarah Sundin on Ipad
  • PDF 2120 by George Wylesol
  • DOWNLOADS Mercy by Ian Haramaki
  • Online Read Ebook The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion
  • Online Read Ebook Marked by Masks and Secrets by Maggie Sunseri
  • PDF EPUB Download Get Scalable The Operating System Your Business Needs To Run and Scale Without You
  • 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-10 22:22:40
Previous
Deletes a pet
Built with