My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Other Valley A Novel by Scott Alexander Howard Full Book
  • epub download The In-Between Bookstore A Novel by Edward Underhill
  • PDF EPUB Download Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kir
  • PDF DOWNLOAD American Christian Nationalism Neither American nor Christian by Michael W. Austin M
  • epub download The Secret of Secrets by Dan Brown
  • DOWNLOADS Niacin The Real Story 2nd Edition by Andrew W. Saul MS PhD Abram Hoffer MD Harold D. Fo
  • PDF EPUB Download CCNP Security Virtual Private Networks SVPN 300-730 Official Cert Guide by Full
  • PDF Long Island by Colm Tóibín
  • PDF EPUB Download Skincare Decoded The Practical Guide to Beautiful Skin by Victoria Fu Gloria Lu F
  • Online Read Ebook Bolt Action Campaign D-Day US Sector by Warlord Games Peter Dennis
  • Online Read Ebook Mistletoe Daddy and The Cowboys Christmas Baby by Deb Kastner Carolyne Aarsen
  • epub download The Bone Season Box Set Authors Preferred Text by Samantha Shannon
  • Read pdf Family on the Range by Jessica Nelson
  • DOWNLOAD PDF EPUB The Art of Sam Yang by Sam Yang 3dtotal Publishing
  • Pdf ePub Only in Darkness by Brenda Stanley download ebook
  • DOWNLOADS CompTIA Security Practice Tests Exam SY0-701 by David Seidl
  • PDF Kindle Defying Shadows For Witches and Pagans Battling Cancer and Chronic Illness by Jessica Se
  • DOWNLOAD PDF EPUB Beyond Darning Creative mending techniques by Hikaru Noguchi
  • DOWNLOADS The Official Dopamine Nation Workbook A Practical Guide to Finding Balance in the Age of I
  • download pdf Song So Wild and Blue A Life with the Music of Joni Mitchell by Paul Lisicky
  • Download Pdf A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob
  • Builders of a Nation by Haifaa Younis on Audiobook New
  • Pdf ePub Stranded for the Holidays by Lisa Carter download ebook
  • Download PDF Alpengluhn by Stefan Soell
  • Online Read Ebook The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • Cher Part One The Memoir by Cher on Iphone New Format
  • PDF EPUB Download The Dare by Harley Laroux Full Book
  • Download PDF The Book of Azrael by Amber Nicole
  • Read Pdf Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis Keith Gi
  • PDF Download The Woman Who Climbed Trees A Novel by Smriti Ravindra
  • DOWNLOAD PDF EPUB MARVEL STUDIOS DEADPOOL WOLVERINE THE ART OF THE MOVIE SLIPCASE by Jess Harrold
  • PDF Download Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob Parsons on Ip
  • PDF EPUB Download White Liar by Tomo Serizawa Full Book
  • Download PDF Assistant to the Villain by Hannah Nicole Maehrer
  • DOWNLOADS Keep Me by Sara Cate
  • PDF Download Three Bags Full by Leonie Swann Anthea Bell A. J. Finn
  • download pdf Cleopatra and Frankenstein by Coco Mellors
  • epub download Powerless by Lauren Roberts
  • Read Pdf How to Read the Holy Fathers A Guide for Orthodox Christians by Joseph Lucas
  • Read online The Villainess and the Demon Knight Light Novel Vol. 2 by Nekota Asahiko
  • PDF Download Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mathis
  • Download PDF How Do I Turn My Best Friend Into My Girlfriend Vol. 3 by Syu Yasaka
  • Pdf ePub The Other Side A Story of Women in Art and the Spirit World by Jennifer Higgie download eb
  • The Lost Ones by Johan Rundberg Eva Apelqvist on Ipad
  • epub download Rocky Mountain Daddy and Her Colorado Cowboy by Lois Richer Mindy Obenhaus
  • DOWNLOAD PDF EPUB Malaparte A Biography by Maurizio Serra Stephen Twilley
  • Read Pdf Ride It Out by Jenna Jarvis
  • Online Read Ebook Sharon Tate Recollection by Debra Tate
  • Read Pdf Wren Martin Ruins It All by Amanda DeWitt
  • 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-14 22:08:15
Previous
Deletes a pet
Built with