My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Chokepoint Capitalism How Big Tech and Big Content Captured Creative Labor Markets and
  • PDF EPUB Download Who Can Afford to Be Critical An Inquiry into What We Cant Do Alone as Designer
  • The Psychology of Money Timeless lessons on wealth greed and happiness by Morgan Housel on Iphone
  • PDF The Widower Takes a Wife An Uplifting Inspirational Romance by Emma Miller
  • DOWNLOAD PDF EPUB Bloodborne The Death of Sleep by Ales Kot Piotr Kowalski
  • Pdf ePub The Other Valley A Novel by Scott Alexander Howard download ebook
  • PDF Kindle North Is the Night Deluxe Special Edition by Emily Rath
  • FLACO The Owl Who Escaped Captivity and Won the Hearts of the World by Jonathan Hollingsworth Carl
  • Dungeons Dragons Dungeon Club Time to Party by Molly Knox Ostertag Xanthe Bouma on Ipad
  • Revolution in Poetic Language by Julia Kristeva on Iphone New Format
  • DOWNLOAD PDF EPUB The Invisible Life of Addie LaRue by V. E. Schwab
  • Read pdf The Cattleman Meets His Match and Second Chance Hero by Sherri Shackelford Winnie Griggs
  • Read pdf Plain Secrets by Kit Wilkinson
  • Code Name Arc Angel The Demise of The Devil by Bruce Jarvis on Audiobook New
  • Online Read Ebook Only in Darkness by Brenda Stanley
  • pdf download Shipping Out Race Performance and Labor at Sea by Anita Gonzalez
  • PDF DOWNLOAD Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranganat
  • Pdf ePub Carrying Albert Home by Homer Hickam download ebook
  • Artificers Alchemy Dungeons Dragons A Young Adventurers Guide by Jim Zub Stacy King Andrew Wheel
  • epub download Lonely Planet Pocket Bilbao San Sebastian by Isabel Albiston
  • Read pdf Star Wars The Rise and Fall of the Galactic Empire by Chris Kempshall
  • Pdf ePub Bold Beans recipes to get your pulse racing by Amelia Christie-Miller download ebook
  • epub download Operative Techniques in Orthopaedic Surgical Oncology by Martin M. Malawer James C Wi
  • How to Be Authentic Simone de Beauvoir and the Quest for Fulfillment by Skye C. Cleary on Iphone New
  • Read pdf The Next Deadly Chapter by V. M. Burns
  • DOWNLOAD PDF EPUB Assassins Apprentice Volume 2 Graphic Novel by Jody Houser Robin Hobb Ryan Kel
  • Read Pdf Hitorijime My Hero 15 by Memeco Arii
  • PDF Kindle Coding with Roblox Lua in 24 Hours The Official Roblox Guide by
  • Online Read Ebook Lightlark Book 1 by Alex Aster
  • epub download Something Like Fate A Novel by Amy Lea
  • PDF EPUB Download Bound to the Shadow Prince by Ruby Dixon Full Book
  • Wayward Wayward Pines 2 by Blake Crouch on Ipad
  • download pdf Billy and the Epic Escape by Jamie Oliver Mónica Armiño
  • Online Read Ebook Drawing People 100 Prompts Projects and Playful Exercises by Viktorija Semjonova
  • epub download Intarsia Knits 12 Colourful Knitwear Designs to Make Your Own by Anna Husemann
  • Freezer Door Cocktails 75 Cocktails That Are Ready When You Are by J. M. Hirsch on Iphone New Format
  • Online Read Ebook Winx Club 3 in 1 Vol. 1 by Rainbow S.p.A.
  • Read pdf Helena and Mr. Big Bad Wolf Vol. 1 by BliSS Xiao
  • PDF EPUB Download Long Island by Colm Tóibín 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-16 01:47:30
Previous
Deletes a pet
Built with