My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Puppy Love by Elle Sprinkle
  • PDF EPUB Download The World of Assassins Creed Valhalla Journey to the North--Logs and Files of a Hi
  • Drachenbanner Ein Waringham-Roman by Rebecca Gablé on Ipad
  • Download Pdf Heart of the Shadow King by Sylvia Mercedes
  • PDF EPUB Download Modeling and Painting Vietnam Wargames by Michael Farnworth Full Book
  • Pdf ePub Elden Ring Official Art Book Volume II by FromSoftware download ebook
  • download pdf Torn by Carian Cole
  • PDF DOWNLOAD Constellations by Kelsi Montgomery on Iphone
  • Read Pdf Island for Two Hawaii Magic Fiji Fantasy by Beverly Jenkins Elaine Overton
  • Download PDF The Husband A totally thrilling and addictive psychological thriller by Daniel Hurst
  • PDF Kindle Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki
  • The Reincarnator and the Goblin Maidens Happily Ever After Using a Past Life to Keep a Joyful Wife V
  • DOWNLOADS Lore Olympus Volume Seven by Rachel Smythe
  • DOWNLOADS Murder on the Cornish Coast Completely addictive British cozy crime mystery by Helena Dixo
  • epub download The Saga of Tanya the Evil Vol. 13 light novel Dum Spiro Spero Part 1 by Carlo Zen
  • Download Pdf The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S S
  • Waste Wars The Wild Afterlife of Your Trash by Alexander Clapp on Iphone New Format
  • Download PDF Shelterwood by Lisa Wingate
  • DOWNLOAD PDF EPUB Why So Serious The Untold Story of NBA Champion Nikola Jokic by Mike Singer
  • pdf download A Domestic Cook Book Containing a Careful Selection of Useful Receipts for the Kitchen
  • PDF Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • DOWNLOAD PDF EPUB Millennial Hospitality by Charles James Hall
  • epub download Fly Me to the Moon Vol. 27 by Kenjiro Hata
  • Five Ways to Forgiveness by Ursula K. Le Guin Nnedi Okorafor on Ipad
  • Online Read Ebook Three Kinds of Lucky by Kim Harrison
  • pdf download The End of the World Is Just the Beginning Mapping the Collapse of Globalization by Pet
  • 365 Days of Drawing People by Lise Herzog on Audiobook New
  • download pdf The Relationship Mechanic A Spicy Small Town Black Sapphic Rom Com by Karmen Lee
  • DOWNLOADS Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone Lisa
  • pdf download Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Susanna
  • Spud Mans Spudtacular Baked Potato Cookbook by Spud Man on Iphone New Format
  • pdf download Validation How the Skill Set That Revolutionized Psychology Will Transform Your Relatio
  • The Mortal Instruments The Graphic Novel Vol. 5 by Cassandra Clare Cassandra Jean on Iphone New Fo
  • Read online Eye Candy Girls English Edition by
  • PDF DOWNLOAD A Whisper in the Walls by Scott Reintgen on Iphone
  • PDF Download Today Tonight Tomorrow by Rachel Lynn Solomon
  • DOWNLOADS The Quiet Storm A Historical and Cultural Analysis of the Power Passion and Pain of RB G
  • PDF My Woman His Wife 20 Year Anniversary Edition by Anna J.
  • PDF I Died for Beauty by Amanda Flower
  • Online Read Ebook Take Me Home by Ouchi Kaeru
  • epub download Yandere Dark Elf She Chased Me All the Way From Another World Vol. 2 by Nakanosora
  • Download Pdf The Woman Who Knew Everyone The Power of Perle Mesta Washingtons Most Famous Hostess b
  • Play of Shadows by Sebastien de Castell on Ipad
  • PDF Cooking and the Crown Royal Recipes from Queen Victoria to King Charles III A Cookbook by Tom
  • PDF Download The Naturalist Society by Carrie Vaughn
  • The Good Bites High Protein Meal Prep Manual Delicious easy low-calorie recipes with full nutrition
  • Read pdf Family of Convenience by Victoria Austin
  • Download PDF Tilda Is Visible A Novel by Jane Tara
  • DOWNLOADS Magica Riot by Kara Buchanan
  • PDF EPUB Download Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bili
  • 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
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-15 08:17:01
Previous
Deletes a pet
Built with