My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Futures Edge by Gareth L. Powell
  • Tying the Knot with an Amagami Sister 8 by Marcey Naito on Ipad
  • PDF EPUB Download The Marquess Next Door A Steamy Historical Romance Book by Virginia Heath Full Boo
  • Read Pdf The Ancient Magus Bride The Golden Yarn Light Novel 1 by Kore Yamazaki
  • PDF EPUB Download Strangers Among Us Murder in a Small Town by L.R. Wright Full Book
  • Glorious A Science Fiction Novel by Gregory Benford Larry Niven on Ipad
  • Download Pdf Blue Fox Arm Assembly Internals and Reverse Engineering by Maria Markstedter
  • epub download The Daughters War by Christopher Buehlman
  • DOWNLOAD PDF EPUB Bates Guide To Physical Examination and History Taking Edition 13 by Lynn S Bi
  • Download PDF Drawn Together Studio DB Architecture and Interiors by Britt Zunino Damian Zunino Tim
  • DOWNLOADS Rebel Undercover The Forgotten Five Book 3 by Lisa McMann
  • PDF The Wars of the Roses The Medieval Art of Graham Turner by Graham Turner
  • PDF Kindle Kill or Be Killed Compendium by Ed Brubaker Sean Phillips Elizabeth Breitweiser
  • PDF Melania by Melania Trump
  • download pdf Thinking through Graphic Design History Challenging the canon by Aggie Toppins
  • Download PDF Lethal Reunion by Lacey Baker
  • PDF Kindle Cursebound A Novel by Saara El-Arifi
  • Download Pdf Racing The Wind by R. W. Thompson
  • PDF Download The Düngeonmeister RPG Sticker Book 500 Stickers to Level Up Your Campaign by Jef Ald
  • PDF Uzaki-chan Wants to Hang Out Vol. 12 by Take
  • Fagin the Thief A Novel by Allison Epstein on Audiobook New
  • Rick Riordan Presents A Touch of Blood by Sajni Patel on Audiobook New
  • epub download Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yu
  • PDF DOWNLOAD The Younger Woman A Novel by Cate Ray on Iphone
  • Read online Star Wars The Blueprints by J. W. Rinzler
  • Read online Three Kinds of Lucky by Kim Harrison
  • DOWNLOAD PDF EPUB The Art of You The Essential Guidebook for Reclaiming Your Creativity by James M
  • Download Pdf Pierced Ink by Dani René
  • Read Pdf Soiled Dove by April Timms
  • Old Gods New Enigmas Marxs Lost Theory by Mike Davis on Audiobook New
  • Read online Last Bench by Ram Halady
  • DOWNLOAD PDF EPUB Crack Goes the Cascarón An Eggcellent Not-Just-for-Easter Shellebration by Sara
  • Read Pdf these heavy lungs we breathe with by K. S. Whittaker
  • Download PDF An Unlikely Love by Dorothy Clark
  • pdf download Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • Read Pdf The Metabolism Makeover Workbook by Megan Hansen RDN
  • Pdf ePub Double Lives by Mary Monroe download ebook
  • PDF Kindle A Little Burglary in Bibury by Christina Hamlett
  • DOWNLOADS The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid French
  • 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 00:37:21
Previous
Deletes a pet
Built with