My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Dramatic Storytelling and Narrative Design A Writers Guide to Video Games and Transmedia
  • download pdf The Well-Lived Life A 103-Year-Old Doctors Six Secrets to Health and Happiness at Ever
  • Pdf ePub DEN Volume 5 The Price of Memories by Richard Corben download ebook
  • DOWNLOADS The Ice Guy and the Cool Girl 09 by Miyuki Tonogaya
  • Online Read Ebook The Summer Hikaru Died Vol. 3 by Mokumokuren Ajani Oloye
  • DOWNLOADS The Innkeepers Wife by Lynn A. Coleman
  • PDF Download The Blunder Years A Boyhood Memoir by Phil Caragol
  • PDF Download His Precious Inheritance by Dorothy Clark
  • Nesting A Novel by Roisín ODonnell on Ipad
  • Lethal Reunion by Lacey Baker on Ipad
  • Read online The Short List How to Drive Business Development by Focusing on the People Who Matter Mo
  • download pdf Wisdom Stories of Tibet Tales of Magic Adventure and Bravery by Laura Burges Lama C
  • Read online Domain-Driven Laravel Learn to Implement Domain-Driven Design Using Laravel by Jesse Gri
  • Pdf ePub Strength and Valor by Mary Ellen Porter Becky Avella download ebook
  • PDF EPUB Download iPad for Seniors in easy steps Covers all models with iPad OS 18 by Nick Vandome F
  • PDF EPUB Download STAR WARS THRAWN ALLIANCES by Timothy Zahn Jody Houser Andrea Di Vito Pat Ollif
  • PDF Becoming a Ballerina The Story of Michaela Mabinty DePrince by Laura Obuobi Olivia Duchess
  • Hostage Security by Lisa Childs on Iphone New Format
  • epub download Behind You Is the Sea A Novel by Susan Muaddi Darraj
  • Bacteria to AI Human Futures with our Nonhuman Symbionts by N. Katherine Hayles on Iphone New Format
  • DOWNLOAD PDF EPUB Color Third Edition A workshop for artists and designers by David Hornung
  • Racing the Clouds by Sydney Dunlap on Iphone New Format
  • Read pdf Huda F Cares by Huda Fahmy
  • DOWNLOAD PDF EPUB The Peoples Hospital Hope and Peril in American Medicine by Ricardo Nuila
  • Projections A Novel by S. E. Porter on Iphone New Format
  • Milk White Steed by Michael Kennedy on Ipad
  • PDF Download Come Fly with Me A Novel by Camille Di Maio
  • pdf download The Cleaner by Samantha Beal
  • Download PDF Decadence by Soph Tang
  • Read online Reckless by Lauren Roberts
  • The Moon and Serpent Bumper Book of Magic by Alan Moore Steve Moore Various on Audiobook New
  • Online Read Ebook Tell Me You Trust Me by Elle Owens
  • Read pdf The Reluctant Witness by Kathleen Tailer
  • Download PDF The Witch of the Forests Guide to Folklore Magick Connect to the wisdom of our elders.
  • Download PDF GRE Prep Plus 2024-2025 - Updated for the New GRE by Kaplan Test Prep
  • Read online Phantasma by Kaylie Smith
  • Pdf ePub Arctic Wild A Spicy Gay Age Gap Romance by Annabeth Albert download ebook
  • DOWNLOAD PDF EPUB AI First Human Always Embracing a New Mindset for the Era of Superintelligence
  • PDF EPUB Download Deconstructing Leaving Church Finding Faith by Karla Kamstra Full Book
  • epub download Demon Copperhead Pulitzer Prize Winner by Barbara Kingsolver
  • The Parent Plan Part 2 by Paula Detmer Riggs on Ipad
  • Download Pdf Tessas Pride by Olivia Brynn
  • epub download Take My Hand by Ruth Scofield
  • Download Pdf American Spirits by Russell Banks
  • Online Read Ebook Book Boyfriend by Emily Wibberley Austin Siegemund-Broka
  • PDF EPUB Download The Time Machine by H. G. Wells Full Book
  • Download PDF An Autobiography of Trauma A Healing Journey by Peter A. Levine
  • download pdf Triumph The Power and the Glory of the Catholic Church - A 2 000 Year History Updated
  • Download PDF Love is an Illusion - The Queen Vol. 1 by Fargo
  • PDF DOWNLOAD Known to the Victim by K. L. Armstrong on Iphone
  • 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-09 22:38:15
Previous
Deletes a pet
Built with