My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Three Eight One by Aliya Whiteley on Iphone New Format
  • Download Pdf Fiancée No More The Forsaken Lady the Prince and Their Make-Believe Love Volume 3 by
  • Read pdf Upstairs Downstairs Baby by Cat Schield
  • Read Pdf The Massacre at Paris By Christopher Marlowe by Mathew R. Martin
  • PDF Kindle Master Your Chess with Judit Polgar Fight for the Center and Other Lessons from the All-
  • Pdf ePub The Capital Order How Economists Invented Austerity and Paved the Way to Fascism by Clara
  • Download PDF As Long as the Lemon Trees Grow by Zoulfa Katouh
  • Read Pdf Eight Billion Genies Deluxe Edition Vol. 1 by Charles Soule Ryan Browne
  • PDF EPUB Download The Linchpin Writer Crafting Your Novels Key Moments by John Matthew Fox Full Book
  • PDF DOWNLOAD Mission Christmas by Lindsay McKenna Susan Grant on Iphone
  • Read Pdf Philosophy 2e Asking Questions Seeking Answers by Stephen Stich Thomas Donaldson
  • PDF Kindle Fractured Freedom by Shain Rose
  • Terms and Conditions by Lauren Asher on Ipad
  • PDF Kindle An Anthology of Aquatic Life by Sam Hume
  • PDF Download The Lady in Glass and Other Stories by Anne Bishop
  • PDF EPUB Download The Language of Mathematics The Stories behind the Symbols by Raúl Rojas Full Bo
  • Read Pdf A World of Patterns 100 Vibrant Postcards by Christine Chitnis
  • epub download Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School
  • Maya Natasha A Novel by Elyse Durham on Iphone New Format
  • Download PDF Captive on the High Seas by Christina Rich
  • Read online What the Rabbis Know That I Never Learned in Church by Chaim Bentorah
  • PDF Download When the Naughty Step Makes Things Worse The Art and Science of Low Demand Parenting
  • Download Pdf How to Win at Travel by Brian Kelly
  • Read Pdf An Offer from a Gentleman by Julia Quinn
  • DOWNLOAD PDF EPUB Gotham City Cocktails Official Handcrafted Food Drinks From the World of Batman
  • DOWNLOAD PDF EPUB My Midlife Magic Daze by Jennifer L. Hart
  • PDF EPUB Download The Warriors Bride Alliance by Denise Lynn Full Book
  • download pdf All You Want Whenever You Want by Omayu
  • Coding with Roblox Lua in 24 Hours The Official Roblox Guide by on Iphone New Format
  • pdf download Disposable Americas Contempt for the Underclass by Sarah Jones
  • DOWNLOADS In the Distance by Hernan Diaz
  • PDF Kindle The High Probability Options Trader Winning Strategies to Take You to the Next Level by
  • God of War The Official Cookbook of the Nine Realms by Insight Editions Victoria Rosenthal Rick Ba
  • Download Pdf VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu
  • DOWNLOADS Crush the Composition Transform the Way You Look at Photography to Get the Best Images You
  • Read Pdf Snapshots in a Life by James Ballentine
  • PDF Kindle The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • An Authentic Life by Jennifer Chang on Audiobook New
  • Download Pdf The Dead We Honor by William W. Johnstone J. A. Johnstone
  • DOWNLOADS My Life on the Mountain by Marion Brand
  • pdf download Halfway to Hell by William W. Johnstone J. A. Johnstone
  • PDF Bear Bottom by Stuart Gibbs
  • Proud Flesh A Memoir of Motherhood Intimate Violence and Reclaiming Pleasure by Catherine Simone G
  • Read pdf Angels Inferno by William Hjortsberg
  • Pdf ePub Zegaajimo Indigenous Horror Fiction by Kateri Akiwenzie-Damm Nathan Adler download ebook
  • PDF Download How to Corporate Proven Lessons for Winning at Work by Fela Abioye
  • Summer in the City by Alex Aster on Ipad
  • PDF EPUB Download The Nightingale by Kristin Hannah Full Book
  • DOWNLOADS Cosas que ocultamos de la luz by Lucy Score
  • Download PDF Blackmailed into the Marriage Bed by Melanie Milburne
  • 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-13 21:52:35
Previous
Deletes a pet
Built with