My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Dungeons Dragons Worlds Realms Adventures from Greyhawk to Faerûn and Beyond by Adam
  • PDF EPUB Download Bellas Journey by Victoria A Farias Lucia Benito Full Book
  • The Murder After the Night Before by Katy Brent on Audiobook New
  • epub download A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob
  • PDF EPUB Download Emily Wildes Encyclopaedia of Faeries Emily Wilde by Heather Fawcett Full Book
  • Read online How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorable
  • Read Pdf Scorpio Witch Unlock the Magic of Your Sun Sign by Ivo Dominguez Jr. Zoe Howe Alison Ch
  • PDF EPUB Download The Cold Start Problem How to Start and Scale Network Effects by Full Book
  • Download PDF Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kirrene
  • pdf download King of Wrath by Ana Huang
  • download pdf The Weaver and the Witch Queen by Genevieve Gornichec
  • epub download A Tiny Piece of Blue A Novel by Charlotte Whitney
  • Read pdf Sip Me Baby One More Time Cocktails Inspired by Pop Musics Iconic Women by Ashley Gibso
  • Download Pdf Disney Fairies 4 in 1 Vol. 2 by Paola Mulazzi The Disney Comics Group Augusto Macchet
  • Xcrawl Classics Reference Booklet by Brendan LaSalle Doug Kovacs on Ipad
  • Pdf ePub The Art of Sam Yang by Sam Yang 3dtotal Publishing download ebook
  • pdf download Bonds of Hercules by Jasmine Mas
  • Online Read Ebook Darkfever by Karen Marie Moning
  • epub download Moving Targets by Lynn Shannon Heather Woodhaven
  • Before We Forget Kindness by Toshikazu Kawaguchi on Audiobook New
  • Are You There God Its Me In Menopause An Unfiltered Honest Guide to Midlife Hormones Health and
  • Pdf ePub Sallys Lament A Twisted Tale by Mari Mancusi download ebook
  • download pdf Sword Catcher by Cassandra Clare
  • Read online The Sunbearer Trials by Aiden Thomas
  • DOWNLOAD PDF EPUB Miriams Sisters Deborahs Daughters When women lead the way by Liz Crumlish
  • Read pdf CTS Certified Technology Specialist Exam Guide Third Edition by AVIXA Inc. Andy Ciddor
  • pdf download The Priory of the Orange Tree by Samantha Shannon
  • Online Read Ebook Bellas Journey by Victoria A Farias Lucia Benito
  • PDF DOWNLOAD The Real Economy History and Theory by Jonathan Levy on Iphone
  • DOWNLOADS Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis Keith Gif
  • The Discerning Gentlemans Guide A Historical Romance by Virginia Heath on Ipad
  • PDF EPUB Download Tokyo Alien Bros. Vol. 1 by Keigo Shinzo Full Book
  • Read Pdf Violet Promises by Marie Johnston
  • DOWNLOAD PDF EPUB Swift and Saddled A Rebel Blue Ranch Novel by Lyla Sage
  • download pdf The Abundant Life Journal A 30-Week Devotional for Mindfulness and Restoration by Anh
  • The Dialogues Conversations about the Nature of the Universe by Clifford V. Johnson Frank Wilczek o
  • Download Pdf James ICC A Critical and Exegetical Commentary by Dale C. Allison Jr. Christopher M.
  • epub download Victory to Defeat The British Army 1918-40 by Richard Dannatt Robert Lyman
  • DOWNLOAD PDF EPUB Marinos The ICU Book Print eBook with Multimedia by Paul Marino
  • PDF Kindle I Hope This Finds You Well A Novel by Natalie Sue
  • epub download The Darkness Outside Us by Eliot Schrefer
  • PDF We Three Queens by Rhys Bowen
  • PDF Desserts for Stressed People A Secret Identity Romantic Comedy by Letizia Lorini
  • Online Read Ebook A Tempest of Tea by Hafsah Faizal
  • DOWNLOADS In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles
  • Sophies World A Novel About the History of Philosophy 30th Anniversary Edition by Jostein Gaarder P
  • Pdf ePub Italians Pregnant Mistress by Carol Marinelli download ebook
  • PDF Download The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • Download PDF Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • Download Pdf Michael S. Smith Classic by Design by Michael S. Smith ANDREW FERREN Shonda Rhimes
  • 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-15 21:02:55
Previous
Deletes a pet
Built with