My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Holly A Belladonna Novella by Adalyn Grace download ebook
  • Milky Way by Muriel Jensen on Ipad
  • PDF DOWNLOAD Renouncing The Mob by Derek Alan on Iphone
  • PDF DOWNLOAD Yarichin Bitch Club Vol. 4 by on Iphone
  • PDF EPUB Download Talk to Strangers The Yes Theory Story by Matt Dahlia Derin Emre Full Book
  • More Tales from Fur After Dark by Eric W Schwartz on Iphone New Format
  • PDF Download Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • Online Read Ebook Overwatch Declassified - An Official History by Seanan McGuire
  • DOWNLOADS The Songbird and the Heart of Stone by Carissa Broadbent
  • Online Read Ebook The Cul-de-sac by Christopher Null
  • PDF Download Renouncing The Mob by Derek Alan
  • Online Read Ebook Bloodguard by Cecy Robson
  • Read pdf Blood and Oil Mohammed bin Salmans Ruthless Quest for Global Power by Bradley Hope Justi
  • Download PDF His Convenient Royal Bride by Cara Colter
  • download pdf Mafia Takedown The Incredible True Story of the FBI Agent Who Devastated the New York
  • pdf download 50 Great Stalks Hunting the Worlds Greatest Game Up Close by Craig Boddington
  • You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by Shauna Britten
  • PDF DOWNLOAD Too Close to Home by Lynette Eason on Iphone
  • PDF All You Need Is Love The Beatles in Their Own Words Unpublished Unvarnished and Told by The B
  • PDF DOWNLOAD Deep Cuts A Novel by Holly Brickley on Iphone
  • Download PDF Dark Heir by C. S. Pacat
  • Download Pdf The Mafia Nanny A WEBTOON Unscrolled Graphic Novel by SH00 Violet Matter
  • DOWNLOAD PDF EPUB Promchanted by Morgan Matson
  • PDF EPUB Download Averted Vision by BW Moran Full Book
  • All New Square Foot Gardening 4th Edition The Worlds Most Popular Growing Method to Harvest MORE Fo
  • DOWNLOADS A Flicker in the Dark A Novel by
  • DOWNLOAD PDF EPUB The ACT Workbook for Kids Fun Activities to Help You Deal with Worry Sadness a
  • PDF Download For Love of a Dog by Janice Carter
  • PDF From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • PDF The Perfection Trap Embracing the Power of Good Enough by Thomas Curran
  • pdf download Lucy Undying A Dracula Novel by Kiersten White
  • DOWNLOAD PDF EPUB I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical
  • Kingdom of Shadows by Barbara Erskine on Audiobook New
  • pdf download Zora the Snow Dragon Dragon Girls 15 by Maddy Mara
  • Download Pdf Judge Dredd A Better World by Rob Williams Arthur Wyatt Henry Flint Boo Cook Jake L
  • When She Unravels by Gabrielle Sands 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-12 01:43:21
Previous
Deletes a pet
Built with