My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf True Failure by Alex Higley
  • Download PDF The National Telepathy by Roque Larraquy Frank Wynne
  • PDF Fearless by Lauren Roberts
  • PDF CompTIA CySA Study Guide Exam CS0-003 by Mike Chapple David Seidl
  • pdf download The Talnikov Family A Novel by Avdotya Panaeva Fiona Bell
  • Read online The Oblivion Bride by Caitlin Starling
  • Read Pdf The Next Deadly Chapter by V. M. Burns
  • The Dare by Harley Laroux on Iphone New Format
  • PDF Download Midnight Black by Mark Greaney
  • PDF A Short History of Trans Misogyny by Jules Gill-Peterson
  • Pdf ePub Starfinder RPG Ports of Call by Kate Baker Brian Bauman Jessica Catalan John Compton J
  • DOWNLOAD PDF EPUB Warrior of the Drowned Empire by Frankie Diane Mallis
  • Online Read Ebook I Am Toph Avatar The Last Airbender by Mei Nakamura Bao Luu
  • PDF Kindle Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Koncho
  • DOWNLOADS The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino Maebar
  • download pdf Say Hello to My Little Friend A Novel by Jennine Capó Crucet
  • Online Read Ebook Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graha
  • Download PDF The Woman Who Climbed Trees A Novel by Smriti Ravindra
  • DOWNLOAD PDF EPUB The Cost of Fear Why Most Safety Advice Is Sexist and How We Can Stop Gender-Bas
  • The Crimson Road by A.G. Slatter on Ipad
  • Online Read Ebook Bonded in Death by J. D. Robb
  • Read online Thank You Teacher by Supriya Kelkar
  • pdf download Titans Vol. 2 The Dark-Winged Queen by Tom Taylor Lucas Meyer
  • PDF Download The Hard Way by Carol Lea Benjamin
  • epub download Linux Kernel Programming - Second Edition A practical guide to kernel internals writi
  • Game of Thrones House of the Dragon Season 2 Inside the Dawn of the Targaryen Civil War by Gina Mc
  • Download PDF The Eyes and the Impossible by Dave Eggers Shawn Harris
  • Download Pdf Once Upon a Wishbone Finding Light Through a Story of Hope Connection and Rediscovered
  • Download Pdf Last Trip to Salida by Anissa Lujan Peyton Bassett Madeline Dyer
  • Read online How to Love A Guide to Feelings Relationships for Everyone by Alex Norris
  • Download Pdf The Crash by Kate Furnivall
  • Online Read Ebook Battle Mountain by C. J. Box
  • Read pdf Ill Become a Villainess Who Goes Down in History Vol. 1 It Seems Turning Into a High-Bor
  • PDF EPUB Download 365 Days of Drawing People by Lise Herzog Full Book
  • epub download The Hidden Life of Cecily Larson A Novel by Ellen Baker
  • PDF Pet Portrait Embroidery Lovingly Stitch Your Dog or Cat A Modern Guide to Thread Painting by Mi
  • PDF Exit Interview The Life and Death of My Ambitious Career by Kristi Coulter
  • Pdf ePub The Pfizer Papers Pfizers Crimes Against Humanity by The WarRoom DailyClout Pfizer Documen
  • Online Read Ebook The Three-Body Problem Vol. 1 comic The Comic Edition by XuDong Cai Jin Cai Twi
  • The Information-Literate Historian A Guide to Research for History Students by Jenny L. Presnell on
  • Read online Massive by John Trefry
  • PDF Kindle Your Brains Not Broken Workbook Strategies for Navigating Your Emotions and Life with AD
  • Online Read Ebook Bonded in Death by J. D. Robb
  • epub download The Hunchback of Notre-Dame by Victor Hugo
  • Online Read Ebook Sicilian Avengers Book One by Luigi Natoli Stephen Riggio Umberto Eco
  • Read pdf The Capitalist Manifesto by Johan Norberg
  • Read pdf Twisted Una historia de Nunca Jamás by Emily McIntire Cristina Macía Orio
  • PDF Download The Art of Disagreeing How to Keep Calm and Stay Friends in Hard Conversations by Gav
  • Read pdf Xcrawl Classics Reference Booklet by Brendan LaSalle Doug Kovacs
  • PDF EPUB Download Text Appeal by Kylie Scott Full Book
  • 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-14 21:25:01
Previous
Deletes a pet
Built with