My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol. 3 by
  • epub download The Crash by Freida McFadden
  • Online Read Ebook A Heros Promise by Lee Tobin McClain Kathryn Springer
  • Download PDF Variation A Novel by Rebecca Yarros
  • DOWNLOAD PDF EPUB I Want to Die but I Still Want to Eat Tteokbokki further conversations with my p
  • Supersonic A Novel by Thomas Kohnstamm on Iphone New Format
  • Cashing Out Win the Wealth Game by Walking Away by Julien Saunders Kiersten Saunders on Audiobook N
  • The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings on Audiobook New
  • Pdf ePub Salt Hank A Five Napkin Situation A Cookbook by Henry Laporte download ebook
  • PDF DOWNLOAD Book Lovers by Emily Henry on Iphone
  • pdf download American Heretics Religious Adversaries of Liberal Order by Jerome E. Copulsky
  • Pdf ePub Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley download ebook
  • PDF EPUB Download Hate Me but Let Me Stay Vol. 3 by Hijiki Full Book
  • The Technological Republic Hard Power Soft Belief and the Future of the West by Alexander C. Karp
  • PDF EPUB Download Three Apples Fell from the Sky The International Bestseller by Narine Abgaryan Li
  • Read Pdf Albert Can Cook How To Cook Viral Recipes by Albert Niazhvinski
  • Read pdf The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David A
  • PDF Stay by Valerie Kapp
  • The Lotus Empire by Tasha Suri on Ipad
  • download pdf The High 5 Habit Take Control of Your Life with One Simple Habit by Mel Robbins
  • DOWNLOAD PDF EPUB The Sun and the Star A Nico di Angelo Adventure by Rick Riordan Mark Oshiro
  • Pdf ePub Today Tonight Tomorrow by Rachel Lynn Solomon download ebook
  • PDF Download Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro
  • Pdf ePub CompTIA Security SY0-701 Cert Guide by Lewis Heuermann download ebook
  • Online Read Ebook DC Finest Wonder Woman Origins Omens by Various
  • Download Pdf Pet Sitter 5 by Kelly Starling Lyons Wayne Spencer
  • Pdf ePub Rodeo Reunion by Shannon Taylor Vannatter download ebook
  • Read Pdf White Holes by Carlo Rovelli
  • Read online Encanto Nightmares and Sueños by Alex Segura
  • download pdf Storm Warning by Elizabeth Goddard
  • DOWNLOADS The Game Masters Book of Instant Towns and Cities 160 unique villages towns settlements
  • When Nightmares Come An Investigative Wargame of Supernatural Horror by Patrick Todoroff Boris Groh
  • PDF 50 Great Stalks Hunting the Worlds Greatest Game Up Close by Craig Boddington
  • Download Pdf Oshi No Ko Vol. 9 by Aka Akasaka Mengo Yokoyari Taylor Engel
  • How Economics Works by DK on Audiobook New
  • 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-11 02:34:40
Previous
Deletes a pet
Built with