My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Im Your Man Harlequin Next Series 95 by Susan Crosby
  • pdf download The Fur Traders Lady by Gabrielle Meyer
  • Online Read Ebook Persuasion by Jane Austen
  • pdf download Look Up at The Moon by Karen Phillips Yuliana Simakovska
  • download pdf Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Ke
  • PDF Download Viewer Discretion Advised 2 Forbidden Desires by Yuuki Iwasaki
  • epub download Devil You Know by Harmony West
  • Online Read Ebook Lonely Planet California Southwest USAs National Parks 1 by Anthony Ham Brett At
  • Babel Vol. 3 by Kuji Furumiya Haruyuki Morisawa Amelia Imogen on Audiobook New
  • Read pdf A Fortunes Redemption by Stella Bagwell
  • Pdf ePub Fagin the Thief A Novel by Allison Epstein download ebook
  • Download PDF Sword of the Demon Hunter Kijin Gentosho Light Novel Vol. 7 by Motoo Nakanishi
  • PDF EPUB Download Huda F Cares by Huda Fahmy Full Book
  • Read Pdf Darkwing Duck Negaduck Vol 2 The Ancient Order Of Villainy by Jeff Parker John Compton
  • Online Read Ebook Eternal Magic by Alexandra Ivy
  • Online Read Ebook The Wager A Tale of Shipwreck Mutiny and Murder 2023 BN Author of the Year by Dav
  • PDF EPUB Download Broken Hearts And Toxic Traits I am The Problem by Dionisio Burgos Louis Morales
  • My Next Life as a Villainess All Routes Lead to Doom Volume 13 Light Novel by Satoru Yamaguchi Nami
  • DOWNLOADS The Immortal Orders Omnibus by Allison Carr Waechter
  • DOWNLOAD PDF EPUB The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Ali
  • PDF EPUB Download The Crush by Ren Browne Full Book
  • PDF EPUB Download Under the Eye of the Big Bird A Novel by Hiromi Kawakami Asa Yoneda Full Book
  • pdf download Bellas Journey by Victoria A Farias Lucia Benito
  • DOWNLOADS Birthday Girl by Penelope Douglas
  • Online Read Ebook Life Lessons From Historical Women by Eleanor Morton
  • pdf download Critical Role The Mighty Nein Origins--Caduceus Clay by Taliesin Jaffe Matthew Mercer
  • Read pdf Chokepoints American Power in the Age of Economic Warfare by Edward Fishman
  • Read Pdf Warboss by Mike Brooks
  • PDF DOWNLOAD A Whisper in the Walls by Scott Reintgen on Iphone
  • epub download La balada de nunca jamás - Ed. Coleccionista The Ballad of Never After by Stephanie
  • PDF Download The Art of Overwatch Volume 2 Limited Edition by
  • Pdf ePub Good Golden Sun by Brendan Wenzel download ebook
  • PDF Games Untold by Jennifer Lynn Barnes
  • Pdf ePub The Peacemaker by Wanda E. Brunstetter download ebook
  • PDF Download Harley Quinn Redemption by Rachael Allen
  • Download PDF Wanted Eiichiro Oda Before One Piece by Eiichiro Oda
  • Pdf ePub A Home of Her Own by Keli Gwyn download ebook
  • Online Read Ebook The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World
  • Read pdf The Rialto in Richmond The Money War Between the States Other Mysteries of the Civil War
  • pdf download Perilous Refuge by Kathleen Tailer
  • DOWNLOAD PDF EPUB Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter De
  • PDF Download The Moon and Serpent Bumper Book of Magic by Alan Moore Steve Moore Various
  • Pdf ePub Life Drawing A Love and Rockets Collection by Jaime Hernandez download ebook
  • They Call Me Güero A Border Kids Poems by David Bowles on Audiobook New
  • Download Pdf The Shepherds Betrothal by Lynn A. Coleman
  • Read pdf Boy Vs. Beast 3 Fire Beast by Mac Park
  • Freezer Door Cocktails 75 Cocktails That Are Ready When You Are by J. M. Hirsch on Iphone New Format
  • pdf download The Tainted Cup by Robert Jackson Bennett
  • PDF EPUB Download Engineering Graphics with SOLIDWORKS 2022 A Step-by-Step Project Based Approach
  • Read pdf Unstuck by Barbara Dee
  • 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 23:43:15
Previous
Deletes a pet
Built with