My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Marry Me Mackenzie by Joanna Sims Full Book
  • pdf download Celestial Fates by S.L. Morales
  • Redeeming 6 Spanish Edition by Chloe Walsh on Ipad
  • DOWNLOADS When Rivers Dance Like Promises Book 1 - 2nd Edition by Nekesa Sepiwe
  • PDF DOWNLOAD The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle on Ipho
  • PDF EPUB Download The Poison Path Grimoire Dark Herbalism Poison Magic and Baneful Allies by Cob
  • DOWNLOAD PDF EPUB The Arc The Third Book of The Loop Trilogy by Ben Oliver
  • download pdf The Amish Spinsters Courtship and Her New Amish Family by Emma Miller Carrie Lighte
  • Pdf ePub More Tales of Pirx the Pilot by Stanislaw Lem download ebook
  • Read pdf Conclave by Robert Harris
  • DOWNLOAD PDF EPUB Tokyo Revengers A Letter from Keisuke Baji Vol. 3 by Ken Wakui Yukinori Natsuka
  • PDF Download Starcodes Astro Pocket Oracle A 56-Card Deck and Guidebook by Heather Roan Robbins
  • Dinosaur Roar by Paul Stickland Henrietta Stickland on Iphone New Format
  • PDF DOWNLOAD The Summer I Turned Pretty by Jenny Han on Iphone
  • Download PDF The Legend of Zelda Tears of the Kingdom - The Complete Official Guide Collectors Editi
  • Pdf ePub Woodpecker Method 2 by Axel Smith download ebook
  • Minecraft Annual 2025 by Mojang AB Farshore on Iphone New Format
  • Download Pdf Weird Ireland An Unofficial Guide to the Island by Brinsley McNamara
  • Online Read Ebook Animal Farm by George Orwell
  • PDF Download Early Bird by Karen Winters Schwartz
  • pdf download SKin by Ibi Zoboi
  • Read online Accidentally Amy by Lynn Painter
  • PDF Kindle Frankenstein by Mary Shelley
  • Read online The Japanese Myths A Guide to Gods Heroes and Spirits by Joshua Frydman
  • DOWNLOAD PDF EPUB Moral Treatment by Stephanie Carpenter
  • download pdf Dungeons Dragons Dungeon Club Time to Party by Molly Knox Ostertag Xanthe Bouma
  • download pdf The Weakest Tamer Began a Journey to Pick Up Trash Light Novel Vol. 8 by Honobonoru500
  • PDF Kindle Sip with Tea by LaTasha Hunt
  • DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel on Audiobook New
  • download pdf Ruthless Render Volume 2 by dd markk
  • Cannabis Breeding Basic to Advanced Marijuana Propagation by James Loud on Iphone New Format
  • pdf download The Worlds Finest Assassin Gets Reincarnated in Another World as an Aristocrat Vol. 7
  • DOWNLOAD PDF EPUB A Fly on the Wall by Kalman Stein
  • pdf download On His Brides Terms by Abby Green
  • epub download The Secrets We Hide by Berlin Wick
  • PDF EPUB Download Yarichin Bitch Club Vol. 4 by Full Book
  • Read Pdf Pink-pilled Women and the far right by Lois Shearing
  • PDF Good Dirt A Novel by Charmaine Wilkerson
  • Read online Just Beyond the Light Making Peace with the Wars Inside Our Head by D. Randall Blythe
  • Download PDF Sebastiao Salgado. Amazonia by Sebastiao Salgado Lelia Wanick Salgado
  • PDF Download Orlando A Norton Critical Edition by Virginia Woolf Madelyn Detloff
  • Read pdf Arctic Wild A Spicy Gay Age Gap Romance by Annabeth Albert
  • Read online The Art of Marvels Spider-Man 2 Deluxe Edition by Insomniac Games
  • download pdf Boundless A Drizzt Novel by R. A. Salvatore
  • PDF Download Winning Olivias Heart by Mary Davis
  • DOWNLOAD PDF EPUB Untouchable by Mike Lawson
  • download pdf Star Warriors A Starless Clan 6 by Erin Hunter
  • epub download The Ballad of Songbirds and Snakes by Suzanne Collins
  • PDF EPUB Download The Experience Machine How Our Minds Predict and Shape Reality by Andy Clark Ful
  • Read pdf How We Sold Our Future The Failure to Fight Climate Change by Jens Beckert Ray Cunningha
  • 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 21:47:20
Previous
Deletes a pet
Built with