My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Mother River by Can Xue Karen Gernant Chen Zeping Full Book
  • PDF DOWNLOAD Bake With Brooki by Brooke Bellamy on Iphone
  • DOWNLOADS Never Flinch A Novel by Stephen King
  • PDF Kindle Spy x Family Family Portrait by Aya Yajima Tatsuya Endo
  • Book Lovers by Jenny Zemanek Set of 3 Mini Notebooks by Flame Tree Studio on Ipad
  • DOWNLOADS The Time Machine by H. G. Wells
  • epub download Dick Tracy Valentines Day Special by Alex Segura Michael Moreci Craig Cermak
  • Read pdf Not Another Love Song by Julie Soto
  • PDF Kindle FATELESS by Lindy Montgomery
  • Bloodguard by Cecy Robson on Iphone New Format
  • DOWNLOADS Star Wars The Secrets of the Clone Troopers by Marc Sumerak Alberto Buscicchio
  • PDF Kindle Still Standing Dealing with Grief Loss Sickness by Reverend Yolanda Michelle Murphy
  • Defenders of the West The Christian Heroes Who Stood Against Islam by Raymond Ibrahim Victor Davis
  • epub download The Laws of Power How to Use Time-Tested Truths to Get Everything You Want by Brian Tr
  • The Trading Game A Confession by Gary Stevenson on Ipad
  • The Art of Apex Legends by on Ipad
  • DOWNLOAD PDF EPUB Forgotten Skills of Cooking 700 Recipes Showing You Why the Time-honoured Ways A
  • PDF EPUB Download New Anatomy for Strength Fitness Training An Illustrated Guide to Your Muscles in
  • Read pdf Love Inspired Suspense March 2025 - Box Set 1 of 2 by Connie Queen Deena Alexander Lace
  • DOWNLOADS Shungite Protection Healing and Detoxification by Regina Martino
  • PDF EPUB Download The Adventures of Pinocchio A Pop-Up Book by Giordano Philip Hannah Porter Carlo
  • download pdf Mockingjay by Suzanne Collins
  • Online Read Ebook Bone Pendant Girls by Terry S. Friedman
  • PDF Sip Me Baby One More Time Cocktails Inspired by Pop Musics Iconic Women by Ashley Gibson
  • PDF Kindle Never Nap in a Casket by J W Hodge
  • Download PDF The Jam Maker 2025s best new Tasmanian historical fiction based on a true story perfec
  • PDF EPUB Download The Love Wager by Lynn Painter Full Book
  • download pdf The Electric State by Simon Stalenhag
  • Pdf ePub The Best Advice from clowns On Dating by Libby K download ebook
  • pdf download Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • Download PDF Invincible Compendium Volume 1 by Robert Kirkman Cory Walker Ryan Ottley
  • Read pdf Relentless Mercy A Sermonic Commentary on Jonah by John M Burris
  • DOWNLOADS The Power of Nunchi The Korean Secret to Happiness and Success by Euny Hong
  • Read Pdf A Day at the Post Office by Theonesse Cheon
  • epub download The Bones Beneath My Skin by TJ Klune
  • Download Pdf Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larmon Alf
  • PDF Download The Dog Who Followed the Moon by James Norbury
  • DOWNLOADS Almost Sunset by Wahab Algarmi
  • Online Read Ebook Things I Wanted To Say by Monica Murphy
  • PDF Kindle Tom Clancy Defense Protocol by Brian Andrews Jeffrey Wilson
  • Download Pdf A Husband for Christmas by Gail Gaymer Martin
  • Pdf ePub Atlantic Cataclysm Rethinking the Atlantic Slave Trades by David Eltis download ebook
  • Natsumes Book of Friends Vol. 30 by Yuki Midorikawa on Iphone New Format
  • PDF DOWNLOAD Betting on You by Lynn Painter on Iphone
  • pdf download Galway Confidential A Jack Taylor Novel by Ken Bruen
  • PDF DOWNLOAD The Blanket Cats by Kiyoshi Shigematsu Jesse Kirkwood on Iphone
  • PDF A Holiday Match by Belle Calhoune Lois Richer
  • Lobster and other things Im learning to love by Hollie McNish on Ipad
  • PDF Download Deep Beneath Us by Catriona McPherson
  • Read pdf Glorious Exploits A Novel by Ferdia Lennon
  • 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:18:45
Previous
Deletes a pet
Built with