My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF The Wok Recipes and Techniques by J. Kenji Lopez-Alt
  • pdf download My Possessive Alpha Twins For Mate by Veejay
  • Read online American Spirits by Russell Banks
  • PDF Doctor Who Space Babies by Alison Rumfitt
  • Online Read Ebook Cujo by Stephen King
  • Healing the Widowers Heart by Susan Anne Mason on Ipad
  • PDF EPUB Download Broken by Daylight by Elizabeth Helen Full Book
  • Read online Orisha Volume 1 With Great Power by Huzayfa Umar Saturday AM
  • epub download The Story Collector by Evie Woods
  • Download PDF The Royal House of Karedes Books 1-4 Billionaire Prince Pregnant Mistress The Playboy
  • Pdf ePub Septology by Jon Fosse Damion Searls download ebook
  • Read Pdf Hunting the Falcon Henry VIII Anne Boleyn and the Marriage That Shook Europe by John Gu
  • PDF DOWNLOAD If I Must Die Poetry and Prose by Refaat Alareer Yousef M. Aljamal Susan Abulhawa o
  • pdf download The Witch of the Forests Guide to Folklore Magick Connect to the wisdom of our elders.
  • pdf download Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola
  • Read online Binding 13 by Chloe Walsh
  • DOWNLOADS Perilous Refuge by Kathleen Tailer
  • epub download Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros
  • Read Pdf The Do-Over by Lynn Painter
  • Gokurakugai Vol. 3 by Yuto Sano on Audiobook New
  • Read pdf Saving 6 by Chloe Walsh
  • Even Though Were Adults Vol. 10 by Takako Shimura on Ipad
  • We Three Queens by Rhys Bowen on Iphone New Format
  • Download PDF Beta Vulgaris A Novel by Margie Sarsfield
  • GMAT Official Guide 2023-2024 Focus Edition Includes Book Online Question Bank Digital Flashcards
  • Read pdf Righting Wrongs Three Decades on the Front Lines Battling Abusive Governments by Kenneth
  • epub download The Husky and His White Cat Shizun Erha He Ta De Bai Mao Shizun Novel Vol. 3 by Rou Ba
  • Download PDF The Solitary Witch Oracle Lore Wisdom and Light for your Magickal Path by Lucy Cavend
  • Pdf ePub My Lesbian Experience With Loneliness Special Edition Hardcover by Nagata Kabi download eb
  • download pdf Wind and Truth by Brandon Sanderson
  • PDF Sis Dont Settle How to Stay Smart in Matters of the Heart by Faith Jenkins
  • Online Read Ebook The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard
  • Read pdf Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yuka
  • PDF Download FAKE Fake Money Fake Teachers Fake Assets How Lies Are Making the Poor and Middle C
  • Comfort Fairies Original Version by Beka Davis on Ipad
  • Text Appeal by Kylie Scott on Iphone New Format
  • pdf download Rick Riordan Presents A Touch of Blood by Sajni Patel
  • Download Pdf My Noisy Roommate The Roof Over My Head Comes With Monsters and a Hottie 2 by Kaho Ozak
  • Read pdf The Boyfriend by Freida McFadden
  • DOWNLOAD PDF EPUB High Density High Mountain Trackers HMT 2G 3 by Freya Barker
  • The Quiet Librarian A Novel by Allen Eskens on Ipad
  • DOWNLOAD PDF EPUB True Failure by Alex Higley
  • DOWNLOAD PDF EPUB Looking for You A Novel by Alexander McCall Smith
  • PDF EPUB Download Well Always Have Summer by Jenny Han Full Book
  • Read pdf Wild Apothecary Reclaiming Plant Medicine for All by Amaia Dadachanji
  • DOWNLOAD PDF EPUB USS Arizona BB-39 From Keel Laying to Pearl Harbor Memorial by David Doyle
  • Read Pdf Money Lies and God Inside the Movement to Destroy American Democracy by Katherine Stewa
  • epub download The Last Guy on Earth Special Edition by Sarina Bowen
  • Download Pdf Love of Kill Vol. 14 After the File by Fe Eleanor Summers
  • download pdf Llamame por tu nombre Call Me by Your Name by Andre Aciman
  • 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 22:07:55
Previous
Deletes a pet
Built with