My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Kingdoms of Faith A New History of Islamic Spain by Brian A. Catlos on Iphone
  • pdf download Righting Wrongs Three Decades on the Front Lines Battling Abusive Governments by Kennet
  • DOWNLOAD PDF EPUB The Mysterious Missing Matzoh by Alan Katz Adam Auerbach
  • Download Pdf Enchantra by Kaylie Smith
  • Read pdf Starting Over in Starshine Cove A perfect feel-good romantic comedy to escape with by Deb
  • epub download The Librarians of Lisbon A WWII Story of Love and Espionage by Suzanne Nelson
  • Arctic Wild A Spicy Gay Age Gap Romance by Annabeth Albert on Ipad
  • pdf download Just Beyond the Light Making Peace with the Wars Inside Our Head by D. Randall Blythe
  • pdf download Murtagh Deluxe Edition The World of Eragon by Christopher Paolini
  • epub download The Day I Left You A Novel by Caroline Bishop
  • Download Pdf Language City The Fight to Preserve Endangered Mother Tongues in New York by Ross Perli
  • DOWNLOAD PDF EPUB On Air with Zoe Washington by Janae Marks
  • PDF Download Mastering FreeSWITCH by Anthony Minessale II
  • DOWNLOADS A Kids Book About Identity by Taboo
  • pdf download Technocolonialism When Technology for Good is Harmful by Mirca Madianou
  • Read Pdf Missing Baby Doe by B. J. Daniels
  • pdf download Anathema by Keri Lake Julie Belfield
  • Read pdf Pen and Ink Drawing Techniques Steps subjects prompts by David Morales H.
  • PDF EPUB Download Nothing to Hide 2. Young Men from Slovakia by Phil Dlab Full Book
  • PDF Kindle Bath Time Fish by Adam Gamble Mark Jasper
  • DOWNLOAD PDF EPUB By Any Other Name A Novel by Jodi Picoult
  • Read online The Boyfriend by Freida McFadden
  • I Want to Love You Till Your Dying Day 1 by Nachi Aono on Audiobook New
  • Wicked Volume One in the Wicked Years by Gregory Maguire on Iphone New Format
  • Online Read Ebook Throne of the Fallen by Kerri Maniscalco
  • A Short History of the Roman Mass by Uwe Michael Lang on Iphone New Format
  • PDF EPUB Download Internal Family Systems Therapy Second Edition by Richard C. Schwartz PhD Mart
  • PDF DOWNLOAD Lily and Hedwig - No Regrets The Memoir of Two Fearless Women by Hedwig Vicki Burkhar
  • Pdf ePub The Wild Unknown Alchemy Deck and Guidebook Official Keepsake Box Set by Kim Krans downloa
  • DOWNLOADS Milk White Steed by Michael Kennedy
  • Online Read Ebook Freshman Year A Graphic Novel by Sarah Mai
  • Download PDF Mountain Upside Down by Sara Ryan
  • Read pdf A Vindication of the Rights of Woman by Mary Wollstonecraft
  • Online Read Ebook The Portrait of a Lady by Henry James
  • Read Pdf Things I Wish I Told My Mother The Perfect Mother-Daughter Book Club Read by Susan Patter
  • Read pdf Elden Ring Official Art Book Volume II by FromSoftware
  • Read pdf Remembering Peasants A Personal History of a Vanished World by Patrick Joyce
  • Pdf ePub The Night Ends with Fire by K. X. Song download ebook
  • epub download Ever Mine by Laura Pavlov
  • Online Read Ebook Poison Ivy Vol. 4 Origin of Species by G. Willow Wilson Marcio Takara
  • Download Pdf DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • Read online Street Fighter Swimsuit Special Collection by UDON Various
  • Download Pdf Creep A Love Story by Emma van Straaten
  • PDF Kindle Peerless Novel Vol. 1 by Meng Xi Shi
  • pdf download Unhumans The Secret History of Communist Revolutions and How to Crush Them by Jack Poso
  • Read pdf Ive Been Killing Slimes for 300 Years and Maxed Out My Level Vol. 14 manga by Kisetsu Mo
  • Funny Story by Emily Henry on Iphone New Format
  • Download PDF Matthews Choice by Patricia Bradley
  • Download Pdf The Will of the Many by James Islington
  • DOWNLOAD PDF EPUB Joan Mitchell Paints a Symphony La Grande Vallée Suite by Lisa Rogers Stacy Inn
  • 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 00:22:50
Previous
Deletes a pet
Built with