My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The First to Die at the End by Adam Silvera on Audiobook New
  • Online Read Ebook Teach Yourself VISUALLY iPhone 16 by Guy Hart-Davis
  • PDF EPUB Download How Life Works A Users Guide to the New Biology by Philip Ball Full Book
  • DOWNLOAD PDF EPUB Games Untold by Jennifer Lynn Barnes
  • epub download The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol. 3 b
  • DOWNLOADS A Cure for the Vet by Ann Roth Julie Benson
  • PDF EPUB Download The Signal by Samuel Stoterau Full Book
  • pdf download Pantheon An Illustrated Handbook to the Greek Gods Goddesses by Caroline Lawrence Flo
  • Read pdf The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi
  • DOWNLOAD PDF EPUB The Land of the Living A Novel by Timothy Crellin
  • epub download Glaciers Edge A Novel by R. A. Salvatore
  • PDF DOWNLOAD A Beautiful Second Act Saints and Soul Sisters Who Taught Me to Be a Badass Age with
  • Online Read Ebook The Crimson Road by A.G. Slatter
  • One Piece Pirate Recipes by Sanji on Ipad
  • Read Pdf Ashita no Joe Fighting for Tomorrow 1 by Asao Takamori Tetsuya Chiba
  • Intarsia Knits 12 Colourful Knitwear Designs to Make Your Own by Anna Husemann on Iphone New Format
  • The Fast Track Inside the Surging Business of Womens Sports by Jane McManus on Audiobook New
  • Pdf ePub 86--EIGHTY-SIX Operation High School by Suzume Somemiya Asato Asato Shirabii I-IV Roma
  • Download PDF Artificers Alchemy Dungeons Dragons A Young Adventurers Guide by Jim Zub Stacy King
  • pdf download The Other Valley A Novel by Scott Alexander Howard
  • PDF DOWNLOAD From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass on
  • Read Pdf Knife River A Novel by Justine Champine
  • Pdf ePub Destined for the Cowboy by Justine Davis download ebook
  • Beautiful Broken Love by Shanora Williams on Iphone New Format
  • I Dont Wanna Hibernate by Anna Ouchchy Raahat Kaduji on Ipad
  • DOWNLOAD PDF EPUB A Discovery of Witches by Deborah Harkness
  • pdf download The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for y
  • Sounds Like Love by Ashley Poston on Ipad
  • epub download Project Censoreds State of the Free Press 2025 by Mickey Huff Andy Lee Roth Mnar Adl
  • Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Joseph Leo Koerner
  • Download Pdf On Obedience by Adrienne von Speyr
  • Stranded for the Holidays by Lisa Carter on Audiobook New
  • PDF DEE The Silence Whispers by Brad Umphress
  • epub download A Terrified Teacher at Ghoul School Vol. 15 by Mai Tanaka Amanda Haley
  • PDF EPUB Download Kelly Slater A Life of Waves by Kelly Slater Todd Glaser Eddie Vedder Full Book
  • Read pdf The Fox and the Falcon Deluxe Edition by Piper CJ
  • PDF Phoo Action Deluxe Edition by Jamie Hewlett Matthew Wakeham
  • 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 00:08:10
Previous
Deletes a pet
Built with