My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf The Electric State by Simon Stalenhag
  • Online Read Ebook Please Go Home Miss Akutsu Vol. 7 by Taichi Nagaoka
  • Download PDF The Banished Former Hero Lives as He Pleases Volume 4 by Shin Kouduki Chocoan bedi
  • epub download The Woman Question in Jewish Studies by Susannah Heschel Sarah Imhoff
  • PDF Kindle CPT Professional 2025 by American Medical Association
  • PDF EPUB Download Small Stories of Great Artists by Laurence Anholt Full Book
  • Download Pdf Interior Chinatown by Charles Yu
  • Download PDF Both And A Life in Many Worlds by Huma Abedin
  • Download PDF Harry Potter and the Order of the Phoenix The Illustrated Edition Harry Potter Book 5
  • Online Read Ebook Everything You Need to Ace English Language Arts in One Big Fat Notebook 2nd Edit
  • Read Pdf Autopsy of an Ex-Teen Heartthrob poems of rage love sex and sadness by Avan Jogia
  • This Violent Heart by Heather Levy on Audiobook New
  • The King Of The South by Blake Karrington on Iphone New Format
  • PDF DOWNLOAD Pizza and Taco Best Christmas Ever A Graphic Novel by Stephen Shaskan on Iphone
  • Online Read Ebook The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 b
  • download pdf Pen and Wash An Artists Guide to Combining Ink and Watercolour by John Harrison
  • PDF Download Night Fighter Aces of the Luftwaffe 1940-43 by Neil Page Jean-Louis Roba
  • Read Pdf Mommy Chose You by Kylah Lashae Bates Book Publish Pro
  • Download PDF Carmilla Deluxe Edition The Dark Sapphic Romance that inspired Dracula by Sheridan Le
  • PDF The Poisoner by I V Ophelia
  • download pdf Gigi Shin Is Not a Nerd by Lyla Lee
  • epub download The Wind Speaks No Evil by E M Stewart
  • pdf download Soul Eater NOT The Perfect Edition 03 by Atsushi Ohkubo
  • PDF DOWNLOAD Crush by Svetlana Chmakova on Iphone
  • If You Find a Fawn A What-to-Do for Wild Wanderers by Kellie DuBay Gillis Wazza Pink on Iphone New
  • Blood Over Bright Haven A Novel by M. L. Wang on Ipad
  • Read pdf Las armas secretas The Secret Weapons by Julio Cortázar
  • Download PDF A Discovery of Witches by Deborah Harkness
  • Read online Hew Locke what have we here by Hew Locke OBE RA Isabel Seligman Indra Khanna
  • Read online A Periodic Table of Greek Mythology by Working Classicists Miri Teixeira George Connor
  • DOWNLOAD PDF EPUB End of August A Novel by Paige Dinneny
  • The Official Yellowstone Bar Book 75 Cocktails to Enjoy after the Works Done by Lex Taylor Nathan G
  • PDF EPUB Download Stay by Valerie Kapp Full Book
  • Read online Salt Hank A Five Napkin Situation A Cookbook by Henry Laporte
  • PDF Download Rich Routines Simple Habits That Enrich Every Area of Your Life by Steve Houghton
  • Download Pdf Just Stab Me Now by Jill Bearup
  • DOWNLOADS The Keeper of Stories by Caroline Kusin Pritchard Selina Alko
  • DOWNLOADS Collecting Spirits Life with Ghosts Guardians Guides by Renee Valois
  • download pdf Slewfoot A Tale of Bewitchery by Brom
  • PDF Kindle The Sources of Modern Architecture and Design by Nikolaus Pevsner Kenneth Frampton
  • Read online Whirlwind by Kayla Grosse
  • DOWNLOAD PDF EPUB The Unmaking of June Farrow A Novel by Adrienne Young
  • Download Pdf The Rules of Fortune A Novel by Danielle Prescod Mindy Kaling
  • Axe Me No Questions by Paula Charles on Iphone New Format
  • Download PDF The Master and Margarita Mirra Ginsburg Translation by Mikhail Bulgakov Diana Burgin
  • DOWNLOAD PDF EPUB The Art of Dragon Age The Veilguard Deluxe Edition by Bioware
  • PDF The Great Catnapping by Emily Ecton David Mottram
  • Read online Yellowface by R. F. Kuang
  • Read online River East River West A Novel by Aube Rey Lescure
  • Last Call for Bud Light The Fall and Future of Americas Favorite Beer by Anson Frericks on Audiobook
  • 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
Previous
Deletes a pet
Built with