My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Name Her Holy by Aubrey Ennis
  • PDF EPUB Download Generative Art with JavaScript and SVG Utilizing Scalable Vector Graphics and Algo
  • PDF EPUB Download Family of Her Dreams by Keli Gwyn Full Book
  • Rick Kotanis 400 Million Dollar Summer by Waka T. Brown on Iphone New Format
  • DOWNLOAD PDF EPUB Bamboo Kingdom 5 The Lightning Path by Erin Hunter
  • Read pdf Clinical Atlas of Musculoskeletal Ultrasound in Rheumatology by Janeth Yinh Eugene Kissi
  • Read online Eyes on Gaza Witnessing Annihilation by Khaled A. Beydoun Mohammad Sabaaneh
  • PDF EPUB Download Sweet Potato Soul Vegan Vibes 100 Soulful Plant-Based Recipes for Healthy Everyday
  • Read pdf The Olympian Affair by Jim Butcher
  • PDF Download Grandmaster of Demonic Cultivation Mo Dao Zu Shi Manhua Vol. 3 by Mo Xiang Tong Xiu
  • DOWNLOADS Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban
  • I Want to Die but I Still Want to Eat Tteokbokki further conversations with my psychiatrist. Sequel
  • PDF DOWNLOAD Boys in the Valley by Philip Fracassi on Iphone
  • pdf download Flight of Eagles by Jack Higgins
  • Read Pdf Every Bird from Sea to Shining Sea One Couples Big Year in Birding - A Photographic Adven
  • Tailspin by John Armbruster on Iphone New Format
  • Errand into the Maze The Life and Works of Martha Graham by Deborah Jowitt on Audiobook New
  • Read Pdf Halfway There A Graphic Memoir of Self-Discovery by Christine Mari
  • Download PDF Ians Ultimate Gamble An African American Romance by Brenda Jackson
  • DOWNLOADS Lobizona A Novel by Romina Garber
  • pdf download Stormbringer The Elric Saga Part 2 by Michael Moorcock Michael Chabon
  • DOWNLOADS The Reincarnator and the Goblin Maidens Happily Ever After Using a Past Life to Keep a Joy
  • Shelterwood by Lisa Wingate on Ipad
  • Read pdf DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel
  • Online Read Ebook The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion
  • download pdf The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlings Har
  • One Little Piggy by Annie Simpson Scott Barker on Iphone New Format
  • Read pdf Brutto A simple Florentine cookbook by Russell Norman
  • PDF DOWNLOAD Attuned Practicing Interdependence to Heal Our Trauma-and Our World by Thomas Hübl on
  • Read pdf Story of Taylor Swift by Lindsey Sagar
  • Pdf ePub Mis días en la librería Morisaki by Satoshi Yagisawa download ebook
  • Online Read Ebook A Short History of the Roman Mass by Uwe Michael Lang
  • Download Pdf Hunting the Falcon Henry VIII Anne Boleyn and the Marriage That Shook Europe by John
  • pdf download Deep Weird The Varieties of High Strangeness Experience by Jack Hunter Jeffrey J. Krip
  • PDF Rafa Nadal The King of the Court by Dominic Bliss
  • PDF Download The Fishwife Cookbook Delightful Tinned Fish Recipes for Every Occasion by Becca Mill
  • epub download Rick Riordan Presents A Touch of Blood by Sajni Patel
  • PDF DOWNLOAD The Librarians of Lisbon A WWII Story of Love and Espionage by Suzanne Nelson on Ipho
  • PDF EPUB Download The Librarians of Lisbon A WWII Story of Love and Espionage by Suzanne Nelson Fu
  • Read pdf Drawing the Female Figure A Guide for Manga Hentai and Comic Book Artists by
  • Read pdf The Antique Hunters Death on the Red Sea A Novel by C.L. Miller
  • PDF Kindle The Younger Woman A Novel by Cate Ray
  • Where Is Tornado Alley by Wes Locher Who HQ Dede Putra on Audiobook New
  • Platform Engineering A Guide for Technical Product and People Leaders by Camille Fournier Ian Now
  • DOWNLOAD PDF EPUB The Love Wager by Lynn Painter
  • The Crash by Freida McFadden on Audiobook New
  • Download PDF A Year of Crochet Stitches A Stitch-A-Day Perpetual Calendar by Jill Wright
  • Online Read Ebook This Book Is Gay by Juno Dawson David Levithan
  • DOWNLOADS Constellations by Kelsi Montgomery
  • Online Read Ebook This American Ex-Wife How I Ended My Marriage and Started My Life by Lyz Lenz
  • 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:02:01
Previous
Deletes a pet
Built with