My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Meet the Neighbors Animal Minds and Life in a More-than-Human World by Brandon K
  • epub download Any Way the Wind Blows by Rainbow Rowell
  • download pdf Si te gusta la oscuridad You Like It Darker by Stephen King
  • Read Pdf The Wizard of Oz 8 Pop-Ups by Carolina Zanotti Maria Triquell Andrea Bignone
  • Download Pdf Stargrave Bold Endeavour by Joseph A. McCullough Helge C. Balzer
  • Pdf ePub As Long as the Lemon Trees Grow by Zoulfa Katouh download ebook
  • PDF Why I Dyed My Hair Purple and Other Unorthodox Stories by Kori Morgan
  • Azula in the Spirit Temple Avatar The Last Airbender by Faith Erin Hicks Peter Wartman Adele Mater
  • Read pdf Making a Scene by Constance Wu
  • PDF The Count of Monte Cristo by Alexandre Dumas
  • Read Pdf The Game Boy Encyclopedia Every Game Released for the Nintendo Game Boy and Game Boy Colo
  • How to Get Along with Anyone The Playbook for Predicting and Preventing Conflict at Work and at Home
  • The Path of Freemasonry The Craft as a Spiritual Practice by Mark Stavish Arturo de Hoyos Lon Milo
  • Read pdf Logos that Last How to Create Iconic Visual Branding by Allan Peters
  • Read online CLAMP Premium Collection Tokyo Babylon Vol. 6 by Clamp Amanda Haley
  • download pdf Greenlights by Matthew McConaughey
  • What the Rabbis Know That I Never Learned in Church by Chaim Bentorah on Iphone New Format
  • DOWNLOAD PDF EPUB Sea of Stars The Concept Art of Bryce Kho by Bryce Kho
  • Do Interesting Notice. Collect. Share. by Russell Davies on Audiobook New
  • Download Pdf A Certain Hunger by Chelsea G. Summers
  • Read Pdf Ilium A Novel by Lea Carpenter
  • Read pdf Practical Fraud Prevention Fraud and AML Analytics for Fintech and eCommerce using SQL a
  • Online Read Ebook Draw Like a Mangaka The Complete Beginners Guide to Learning to Draw Manga by Marc
  • PDF Download Black Clover Vol. 36 by Yuki Tabata
  • DOWNLOADS Plastic A Novel by Scott Guild
  • PDF EPUB Download The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol.
  • pdf download A Surprise Christmas Proposal by Liz Fielding
  • Pdf ePub Anne Has an Alligator by Margaret Bain Cameron Bain download ebook
  • Pdf ePub Hits Flops and Other Illusions My Fortysomething Years in Hollywood by Ed Zwick download
  • Read pdf Swing Trading For Dummies by Omar Bassal
  • Read online A Little Burglary in Bibury by Christina Hamlett
  • Read online Sins Poison of the Heart by Haifaa Younis
  • PDF Ours for Halloween A Dark Monster Romance Novella by Violet Taylor
  • download pdf The Adversary A Novel by Michael Crummey
  • Read online The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World by Ma
  • Pdf ePub Animal Crossing by Kelsey Lewin download ebook
  • DOWNLOADS The Legendary Lynx by Alex Segura Sandy Jarrell
  • Download PDF Acts of Forgiveness A Novel by Maura Cheeks
  • DOWNLOAD PDF EPUB Absolution A Southern Reach Novel by Jeff VanderMeer
  • Lonely Planet Indonesia by on Ipad
  • pdf download Robert Ludlums The Bourne Vendetta by Brian Freeman
  • Read Pdf Kirby Manga Mania Vol. 7 by Hirokazu Hikawa
  • PDF EPUB Download The Too-Perfect Saint Tossed Aside by My Fiancé and Sold to Another Kingdom Manga
  • Read Pdf None of the Answers Racing Through Life in Reverse by Jeff Swaney
  • download pdf Justice Bites A Legal Thriller by Laura Snider James Chandler
  • Download Pdf Dinosaur Roar by Paul Stickland Henrietta Stickland
  • PDF EPUB Download Uzaki-chan Wants to Hang Out Vol. 12 by Take Full Book
  • pdf download Dryfire Fundamental Shooting Techniques for Training at Home by Ben Stoeger Andreas Ya
  • PDF DOWNLOAD The New Menopause Navigating Your Path Through Hormonal Change with Purpose Power a
  • PDF Download Better Than Nonna Modernised Italian Recipes by Danilo Cortellini
  • 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 21:33:20
Previous
Deletes a pet
Built with