My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Witch in Darkness Magick for Tough Times Bad Days and Moments of Total Catastrophe by Kel
  • download pdf Modern Architecture A-Z by TASCHEN
  • PDF Missing Baby Doe by B. J. Daniels
  • Download PDF Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Konch
  • A Western Christmas Homecoming by Lynna Banning Lauri Robinson Kathryn Albright on Ipad
  • DOWNLOAD PDF EPUB Forager Field Notes for Surviving a Family Cult a Memoir by Michelle Dowd
  • PDF EPUB Download Toi Te Mana An Indigenous History of Maori Art by Deidre Brown Ngarino Ellis Jon
  • download pdf A Calamity of Souls by David Baldacci
  • PDF EPUB Download Black Girls and How We Fail Them by Aria S. Halliday Full Book
  • PDF DOWNLOAD Tied to You Vol. 4 by WHAT Micah Kim on Iphone
  • Read online The Whole Time by Catherine Bybee
  • Read Pdf Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros
  • Download Pdf The Fast 800 Treats Recipe Book Healthy and delicious bakes savoury snacks and dessert
  • NSYNC 30th Anniversary Celebration We Want You Back by Selena Fragassi on Ipad
  • PDF EPUB Download Heartless Hunter The Crimson Moth Book 1 by Kristen Ciccarelli Full Book
  • The Green Witchs Oracle Deck Embrace the Wisdom and Insight of Natural Magic by Arin Murphy-Hiscock
  • I Think I Love You by Auriane Desombre on Ipad
  • DOWNLOADS The Knight and the Moth by Rachel Gillig
  • DOWNLOADS Stables Book 2 of the Black Gulch Ranch Series by M. A. Cobb
  • download pdf One-Night Crush by Mia Heintzelman
  • Download PDF Under the Same Stars by Libba Bray
  • PDF The Lotus Empire by Tasha Suri
  • Hidden History of Walt Disney World by Foxx Nolte on Iphone New Format
  • DOWNLOAD PDF EPUB Validation How the Skill Set That Revolutionized Psychology Will Transform Your
  • Icebreaker Deluxe Edition Hardcover A Novel by Hannah Grace on Audiobook New
  • Download Pdf Obey Me The Comic Vol. 1 by Subaru Nitou NTT Solmare
  • Read pdf The Rose Bargain by Sasha Peyton Smith
  • DOWNLOADS A Husband for Christmas by Gail Gaymer Martin
  • PDF Kindle The Dangers in My Heart Vol. 10 by Norio Sakurai
  • Read Pdf Pathfinder RPG Guns Gears Remastered P2 by Michael Sayre Mark Seifter Logan Bonner Je
  • Pdf ePub The Origins of Judaism An Archaeological-Historical Reappraisal by Yonatan Adler download
  • epub download The Cowboys Holiday Blessing and An Aspen Creek Christmas by Brenda Minton Roxanne Ru
  • PDF Download Collisions The Origins of the War in Ukraine and the New Global Instability by Michae
  • Killer in Shellview County by R. Barri Flowers on Audiobook New
  • PDF Download Pony Confidential by Christina Lynch
  • pdf download No-Sew Mini Amigurumi 40 Crochet Patterns for Super Cute Super Small Plushies by Genna
  • PDF EPUB Download My Possessive Alpha Twins For Mate by Veejay Full Book
  • PDF EPUB Download Yes Roya Color Edition by C. Spike Trotman EA Denich Full Book
  • Online Read Ebook Quality by Design A Clinical Microsystems Approach Edition 2 by Marjorie M. Godf
  • Pdf ePub The Paper Boys by Dp Clarence download ebook
  • PDF Download Bound to the Shadow Prince by Ruby Dixon
  • PDF EPUB Download Color Theory for Artists by Ian Goldsmith Full Book
  • download pdf Weird Ireland An Unofficial Guide to the Island by Brinsley McNamara
  • PDF EPUB Download Cousins in the Time of Magic by Emma Otheguy Poly Bernatene Full Book
  • DOWNLOADS Wes Lang The Black Paintings by Wes Lang Wallace Ludel James Fox
  • Download PDF Insatiable The Edge of Darkness Book 1 by Leigh Rivers
  • DOWNLOADS The Watkins Book of Urban Legends by Gail de Vos
  • epub download The Technological Republic Hard Power Soft Belief and the Future of the West by Alex
  • PDF EPUB Download Judge Dredd The Complete Case Files 23 by John Wagner Mark Millar Carlos Ezquerr
  • PDF EPUB Download The Psychology of the Armenian Genocide by George Green 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-10 01:52:55
Previous
Deletes a pet
Built with