My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • CompTIA Security Practice Tests Exam SY0-701 by David Seidl on Ipad
  • pdf download The World War II Bond Campaign by Lawrence R. Samuel
  • PDF Download Twisted Una historia de Nunca Jamás by Emily McIntire Cristina Macía Orio
  • Read Pdf Credence by Penelope Douglas
  • DOWNLOADS Great Big Beautiful Life by Emily Henry
  • pdf download The Electric State by Simon Stalenhag
  • PDF EPUB Download Llamame por tu nombre Call Me by Your Name by Andre Aciman Full Book
  • Read pdf The Mighty Red A Novel by Louise Erdrich
  • Read Pdf Irreducible Consciousness Life Computers and Human Nature by Federico Faggin
  • PDF EPUB Download Glow of the Everflame by Penn Cole Full Book
  • PDF Kindle The Summer I Turned Pretty by Jenny Han
  • Read online How Do I Turn My Best Friend Into My Girlfriend Vol. 3 by Syu Yasaka
  • download pdf The Glutton A Novel by A.K. Blakemore
  • Download PDF From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • pdf download The Dark Mirror by Samantha Shannon
  • PDF Kindle Yours Truly by Abby Jimenez
  • PDF The Legendary Witch Is Reborn as an Oppressed Princess Volume 3 by Touko Amekawa Kuroyuki Jer
  • Pdf ePub Bath Time Fish by Adam Gamble Mark Jasper download ebook
  • Read Pdf Tokyo Revengers A Letter from Keisuke Baji Vol. 3 by Ken Wakui Yukinori Natsukawaguchi
  • PDF Kindle Hideaway A Novel by Hannah Alexander
  • PDF EPUB Download 50 Projects for Building Your Backyard Homestead Updated Edition A Hands-On St
  • download pdf The Wedding People A Novel by Alison Espach
  • PDF DOWNLOAD Not Another Love Song by Julie Soto on Iphone
  • epub download The Other Valley A Novel by Scott Alexander Howard
  • Download Pdf Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • PDF No B.S. Guide to Successful Marketing Automation The Ultimate No Holds Barred Guide to Using Te
  • PDF Download Heideggers Being and Time Paraphrased and Annotated by Thomas Sheehan Professor of Re
  • Read Pdf Vaccines Truth Lies and Controversy by Peter C. Gøtzsche
  • Download PDF Snowy Day and Other Stories by Lee Chang-dong Yoosup Chang Heinz Insu Fenkl
  • Peerless Novel Vol. 3 by Meng Xi Shi Me.Mimo on Ipad
  • Download Pdf Yuletide Redemption and The Pastors Christmas Courtship by Jill Kemerer Glynna Kaye
  • DOWNLOADS Linux Kernel Programming - Second Edition A practical guide to kernel internals writing k
  • Online Read Ebook Semantic Error comic Vol. 1 by Angy
  • Online Read Ebook Never Never Villains Book 9 by Serena Valentino
  • Online Read Ebook Love Inspired March 2025 Box Set - 1 of 2 by Emma Miller Allie Pleiter Linda Goo
  • PDF EPUB Download Cher Part One The Memoir by Cher Full Book
  • download pdf Pornography Men Possessing Women by Andrea Dworkin
  • PDF EPUB Download The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlin
  • The Chaos Agent by Mark Greaney on Iphone New Format
  • Online Read Ebook The Reluctant Witness by Kathleen Tailer
  • The Blue Wolves of Mibu 4 Blue Miburo by Tsuyoshi Yasuda on Ipad
  • download pdf The Underwater Basilica of Nicaea Archaeology in the Birthplace of Christian Theology
  • Missing Baby Doe by B. J. Daniels on Iphone New Format
  • Download PDF The Summer I Turned Pretty by Jenny Han
  • PDF Kindle Werewolf Hamlet by Kerry Madden-Lunsford
  • Read online The Kaiju Preservation Society by John Scalzi
  • DOWNLOADS A Kitchen Witchs Culinary Oracle Deck Gain Daily Insight and Bring Magic to Your Meals wit
  • Pdf ePub Clytemnestra A Novel by Costanza Casati download ebook
  • Puzzled 4 Murder by J. C. Eaton on Iphone New Format
  • Read Pdf The House Divided Sunni Shia and the Making of the Middle East by Barnaby Rogerson
  • 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-12 00:49:05
Previous
Deletes a pet
Built with