My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Oceans of Fate Peace and Peril Aboard the Steamship Empress of Asia by Dan Black James P. Delg
  • Online Read Ebook The Book of Healing Selected Poetry and Prose by Najwa Zebian
  • PDF DOWNLOAD American Populist Huey Long of Louisiana by Thomas E. Patterson on Iphone
  • DOWNLOAD PDF EPUB The Broposal by Sonora Reyes
  • pdf download The Chronicles of DOOM Unraveling Raps Masked Iconoclast by S.H. Fernando Jr.
  • Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Barri Flowers on I
  • PDF Kindle The Disappearing Act The Impossible Case of MH370 by Florence de Changy
  • PDF Kindle Amish Country Hideout by Mary Alford Alison Stone
  • Read online Unlocking the Keto Code The Revolutionary New Science of Keto That Offers More Benefits
  • Online Read Ebook The Wedding People A Novel by Alison Espach
  • Pdf ePub Forever in the Path The Black Experience at Michigan State University by Pero G Dagbovie d
  • download pdf Never Planned on You A Novel by Lindsay Hameroff
  • Download PDF Sandwich A Novel by Catherine Newman
  • PDF Download The Twilight Saga Deluxe Hardcover Collection by Stephenie Meyer
  • DOWNLOAD PDF EPUB One Message Remains by Premee Mohamed
  • download pdf Visual Complex Analysis 25th Anniversary Edition by Tristan Needham Roger Penrose
  • The Time Machine by H. G. Wells on Iphone New Format
  • PDF EPUB Download How to Win at Travel by Brian Kelly Full Book
  • PDF Download Welcome to Dorley Hall by Alyson Greaves
  • Download Pdf Snowed In at the Cat Cafe by Rachel Rowlands
  • Read online Waste Wars The Wild Afterlife of Your Trash by Alexander Clapp
  • PDF Download About Time by Neil Hilborn
  • Online Read Ebook Late Roman Combat Tactics by Ilkka Syvänne
  • PDF Kindle VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu
  • Read Pdf Cry of the Wild Eight Animals Under Siege by Charles Foster
  • download pdf Kairos by Jenny Erpenbeck Michael Hofmann
  • Read pdf Out of Darkness by Alex Gray
  • Read online Orlam by Pj Harvey
  • Download PDF The Love Collection Love Gelato Love Luck Love Olives by Jenna Evans Welch
  • PDF EPUB Download Once Upon a Crime Delicious Mysteries and Deadly Murders from the Detective Soci
  • PDF EPUB Download Anathema by Keri Lake Julie Belfield Full Book
  • PDF EPUB Download Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by
  • Upstairs Downstairs Baby by Cat Schield on Iphone New Format
  • PDF The Bounty Hunters Redemption by Janet Dean
  • Download PDF Go as a River by Shelley Read
  • Download Pdf The Amish Widowers Twins and The Amish Bachelors Choice by Jo Ann Brown Jocelyn McClay
  • 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-12 01:14:10
Previous
Deletes a pet
Built with