My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Hexen 2.0 Tarot by Suzanne Treister download ebook
  • Download Pdf Unworthy The Blacksea Odyssey Book 1 by J a Vodvarka
  • download pdf Trapped in a Dating Sim The World of Otome Games is Tough for Mobs Light Novel Vol. 9
  • Pass the Monster Meat Milady 7 by Chika Mizube Kanata Hoshi Peperon on Iphone New Format
  • Read Pdf The Art of Final Fantasy XVI by Square Enix
  • DOWNLOAD PDF EPUB The Adventures of Sherlock Holmes by Arthur Conan Doyle
  • Pdf ePub Yakuza Fiancé Raise wa Tanin ga Ii Vol. 7 by Asuka Konishi download ebook
  • Read online Good Girl A Novel by Aria Aber
  • DOWNLOADS Sonic the Hedgehog Official Movie Novelizations by Kiel Phegley
  • Read pdf The Cowboys Secret and A Rancher to Trust by Jill Kemerer Laurel Blount
  • PDF Download The Hellgate The Search for the Ancient Botanical to Save Humankind by Christopher Pa
  • PDF EPUB Download Richard Scarrys Bunnies A Classic Board Book for Babies and Toddlers by Richard Sc
  • Download Pdf Why Historically Black Colleges and Universities Matter 25 Years of Historical Research
  • PDF DOWNLOAD Killing Eve Codename Villanelle by Luke Jennings on Iphone
  • PDF EPUB Download Where Are Your Boys Tonight The Oral History of Emos Mainstream Explosion 1999-200
  • Read Pdf Monstrilio by Gerardo Sámano Córdova
  • Pdf ePub Green Wood Carving How to Make Beautiful Objects from Unseasoned Wood by Harald Lamon down
  • On the Move The Overheating Earth and the Uprooting of America by Abrahm Lustgarten on Ipad
  • Pdf ePub Frostgrave Mortal Enemies by Joseph A. McCullough aRU-MOR download ebook
  • download pdf Architecture Form Space and Order Edition 4 by Francis D. K. Ching
  • DOWNLOAD PDF EPUB Dogs and Monsters Stories by Mark Haddon
  • PDF EPUB Download Her Royal Highness by Rachel Hawkins Full Book
  • Bear Bottom by Stuart Gibbs on Ipad
  • epub download Gender Magic Live Shamelessly Reclaim Your Joy Step into Your Most Authentic Self b
  • Thats Not My Name by Megan Lally on Ipad
  • A Field Guide to Color A Watercolor Workbook by Lisa Solomon on Ipad
  • DOWNLOADS Iron Widow by Xiran Jay Zhao
  • PDF Download Moral Treatment by Stephanie Carpenter
  • DOWNLOADS Lady Nightmare by Rachel M. Yoldi
  • PDF Kindle I Love You So Much Its Killing Us Both A Novel by Mariah Stovall
  • download pdf Harlequin Romantic Suspense March 2025 - Box Set by Patricia Sargeant Lisa Childs Ve
  • DOWNLOAD PDF EPUB Treasure Coast A Crime Thriller by James Foley
  • DOWNLOADS Formula 2 The glory years 1967-84 by Jutta Fausel Chris Witty Jacky Ickx
  • Online Read Ebook The Brothers Karamazov A New Translation by Michael R. Katz by Fyodor Dostoevsky
  • CCNP Security Virtual Private Networks SVPN 300-730 Official Cert Guide by on Audiobook New
  • PDF EPUB Download Anathema by Keri Lake Julie Belfield Full Book
  • Download Pdf The Otome Heroines Fight for Survival Volume 4 by Harunohi Biyori Hitaki Yuu Camilla
  • PDF EPUB Download I Want You to Be Happy Finding Peace and Abundance in Everyday Life by Pope Franci
  • epub download Our South Black Food Through My Lens by Ashleigh Shanti
  • PDF EPUB Download ReFocus The Literary Films of Richard Brooks by R. Barton Palmer Homer B. Pettey
  • DOWNLOAD PDF EPUB Planeta by Ana Oncina
  • Read pdf Reckless by Elsie Silver
  • PDF EPUB Download Void Corporation by Blake Butler Full Book
  • Read pdf Bloke by Paul Freeman
  • PDF EPUB Download Lobizona A Novel by Romina Garber Full Book
  • download pdf The Innkeepers Wife by Lynn A. Coleman
  • DOWNLOADS The Prosecutor One Mans Battle to Bring Nazis to Justice by Jack Fairweather
  • Acts of Forgiveness A Novel by Maura Cheeks on Audiobook New
  • epub download Bloodfever by Karen Marie Moning
  • Read online The Cowboys Dream Family A Clean and Uplifting Romance by Jennifer Brown
  • 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-06 08:49:10
Previous
Deletes a pet
Built with