My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie
  • Pdf ePub When One World Ends Another Begins by Nathaniel Luscombe download ebook
  • DOWNLOADS The Poisoner by I V Ophelia
  • Deconstructing Leaving Church Finding Faith by Karla Kamstra on Ipad
  • PDF EPUB Download The Secret of The Fishing Box A reincarnation Mystery Across Lifetimes by Cleuni
  • epub download Unlocking the Keto Code The Revolutionary New Science of Keto That Offers More Benefit
  • epub download Studio Ghibli Architecture in Animation by Studio Ghibli
  • PDF DOWNLOAD Victory Harben Tales from the Void Edgar Rice Burroughs Universe by Christopher Paul
  • A Monsoon Rising The Hurricane Wars Book 2 by Thea Guanzon on Ipad
  • Read online The Swans of Harlem Five Black Ballerinas Fifty Years of Sisterhood and Their Reclamat
  • PDF Kindle Cherringham - A Fatal Illusion A Cosy Crime Series by Matthew Costello Neil Richards
  • Return to the Isle of the Lost The Graphic Novel by Melissa de la Cruz Robert Venditti on Ipad
  • PDF DOWNLOAD Who Could Ever Love You A Family Memoir by Mary L. Trump on Iphone
  • Red Book 2024 Report of the Committee on Infectious Diseases by David W. Kimberlin Elizabeth D Barn
  • PDF The Psychology of Money Timeless lessons on wealth greed and happiness by Morgan Housel
  • Online Read Ebook Tegan and Sara Junior High by Tegan Quin Sara Quin Tillie Walden
  • PDF DOWNLOAD The Bosss Mistletoe Maneuvers by Linda Thomas-Sundstrom on Iphone
  • Collaborative Disruption The Walmart and Pg Partnership That Changed Retail Forever by Tom Muccio J
  • Pdf ePub Rainbows After Storms Vol. 2 by Luka Kobachi download ebook
  • PDF Download Home at Summers End by Alys Murray
  • Read Pdf Mirror Mirror by Christina Nolte
  • PDF EPUB Download Pet Sematary by Stephen King Full Book
  • DOWNLOAD PDF EPUB Doorway to the Stars by McDevitt Jack
  • pdf download Always by Helen Hardt
  • Post-work What It Is Why It Matters and How We Get There by Helen Hester Will Stronge on Iphone Ne
  • Download PDF Lore Olympus Volume Three by Rachel Smythe
  • epub download The Divine Design The Untold Story of Earths and Humanitys Evolution in Consciousness
  • download pdf Get Scalable The Operating System Your Business Needs To Run and Scale Without You by
  • Ravensong Green Creek 2 by TJ Klune on Audiobook New
  • DOWNLOADS Fools Assassin Fitz and the Fool Trilogy 1 by Robin Hobb
  • PDF DOWNLOAD Hiding Him by Adam Hattan on Iphone
  • Warriors Changing Skies 1 The Elders Quest by Erin Hunter on Iphone New Format
  • Download PDF The Weakest Tamer Began a Journey to Pick Up Trash Light Novel Vol. 8 by Honobonoru500
  • First Words An interactive book with tracks to trace and flaps to lift by Patricia Hegarty Summer
  • Read pdf Hacks Leaks and Revelations The Art of Analyzing Hacked and Leaked Data by Micah Lee
  • DOWNLOAD PDF EPUB World War II Memoirs The European Theater LOA 385 by Charles B. Macdonald Eliza
  • DOWNLOADS Stop Lying to Yourself 101 Hard Truths to Help You Change Your Life by Simon Gilham
  • Download Pdf Rescue Tails On Precarious Peaks by StacyPlays
  • PDF Kindle Risky by Aurora Rose Reynolds
  • Download PDF The Oblivion Bride by Caitlin Starling
  • Online Read Ebook How to Be Authentic Simone de Beauvoir and the Quest for Fulfillment by Skye C. Cl
  • Unforgivable An Abusive Priest and the Church That Sent Him Abroad by Kevin Lewis ONeill on Audioboo
  • Read online The Penguin Vol 2 All Bad Things by Tom King Rafael De Latorre
  • DOWNLOAD PDF EPUB Winter Holly A Christian book with poems of faith. by James J Tong
  • PDF DOWNLOAD The First Night with the Duke Volume 6 by Hwang DoTol Teava MSG on Iphone
  • Download PDF Christmas Protector by Dana Mentink Susan Sleeman
  • pdf download AI Engineering Building Applications with Foundation Models by Chip Huyen
  • Download Pdf The Mysterious Missing Matzoh by Alan Katz Adam Auerbach
  • download pdf Why Its OK to Be Amoral by Ronald de Sousa
  • Great Big Beautiful Life by Emily Henry on Ipad
  • 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
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-15 22:02:35
Previous
Deletes a pet
Built with