My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Unstuck by Barbara Dee Full Book
  • Read Pdf Donde viven las musas Land of Muses by Marianela Dos Santos
  • HBRs 10 Must Reads 2025 The Definitive Management Ideas of the Year from Harvard Business Review wit
  • DOWNLOADS The Cake Bible 35th Anniversary Edition by Rose Levy Beranbaum Woody Wolston Ron Ben-Is
  • PDF Download Marvel Comics For Dummies by Troy Brownfield
  • Read online The Bone Season Box Set Authors Preferred Text by Samantha Shannon
  • Read Pdf Why England Slept by John F. Kennedy Henry R. Luce
  • pdf download My Mechanical Romance by Alexene Farol Follmuth
  • PDF Download Intermediate Chess Puzzles 500 Practice Exercises to Take Your Game to the Next Level
  • Woodpecker Method 2 by Axel Smith on Ipad
  • PDF Holly A Belladonna Novella by Adalyn Grace
  • Read pdf The Last Guy on Earth Special Edition by Sarina Bowen
  • La sed Thirst by Marina Yuszczuk on Ipad
  • PDF Kindle Blood on Satans Claw or The Devils Skin by Robert Wynne-Simmons Richard Wells
  • download pdf frank sonnets by Diane Seuss
  • Download PDF No-Sew Mini Amigurumi 40 Crochet Patterns for Super Cute Super Small Plushies by Genna
  • Read pdf Man . . . Mercenary . . . Monarch by Joan Elliott Pickart
  • Pdf ePub The Housemaid by Freida McFadden download ebook
  • Download Pdf Social Security Medicare Government Pensions Get the Most Out of Your Retirement and
  • PDF The 32 Principles Harnessing the Power of Jiu-Jitsu to Succeed in Business Relationships and
  • Download Pdf Lost Girls and Love Hotels A Novel by Catherine Hanrahan
  • PDF EPUB Download Momo Arashima Duels the Queen of Death by Misa Sugiura Full Book
  • PDF Kindle Margaret Fuller Collected Writings LOA 388 by Margaret Fuller Noelle A. Baker Megan Ma
  • Read pdf Father I Dont Want This Marriage Volume 2 by Hong Heesu Roal Yuri
  • pdf download Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley
  • Read pdf The Witch of the Forests Guide to Folklore Magick Connect to the wisdom of our elders. Em
  • Download Pdf Wooing the Witch Queen by Stephanie Burgis
  • download pdf The Otherwhere Post by Emily J. Taylor
  • PDF DOWNLOAD After the Storm by G. D. Wright on Iphone
  • Bloodguard by Cecy Robson on Ipad
  • epub download The Apocalypse of the Birds 1 Enoch and the Jewish Revolt against Rome by Elena L Duga
  • PDF DOWNLOAD Carrie 50 Aniversario Carrie 50th Anniversary Edition by Stephen King on Iphone
  • BIG. Formgiving. An Architectural Future History by TASCHEN on Audiobook New
  • PDF Kindle Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • PDF EPUB Download Rick Kotanis 400 Million Dollar Summer by Waka T. Brown Full Book
  • PDF Kindle Wings of Fire The Official How to Draw by Tui T. Sutherland Brianna C. Walsh
  • Pdf ePub A Theory of Dreaming Deluxe Limited Edition by Ava Reid download ebook
  • PDF Download Unforgivable An Abusive Priest and the Church That Sent Him Abroad by Kevin Lewis ONe
  • PDF Download Artifact Space Roman by Miles Cameron Bernhard Kempen
  • PDF EPUB Download An Unlikely Union by Shannon Farrington Full Book
  • PDF Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • DOWNLOADS The Hidden Dungeon Only I Can Enter Manga Vol. 12 by Meguru Seto Tomoyuki Hino Takehana
  • Read Pdf Punk 57 by Penelope Douglas
  • The Girl Who Risked It All An epic and heartbreaking World War 2 novel by Kate Hewitt on Iphone New
  • Shangri-La Frontier 15 by Ryosuke Fuji Katarina on Iphone New Format
  • pdf download Aristóteles y Dante se sumergen en las aguas del mundo by
  • epub download Clitemnestra Clytemnestra by Costanza Casati
  • Read Pdf Handbook of Children and Screens Digital Media Development and Well-Being from Birth Th
  • Theres Always Divorce by N.E.L on Iphone New Format
  • download pdf Infinite Dendrogram Volume 21 Light Novel by Sakon Kaidou Taiki Andrew Hodgson
  • 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 22:18:15
Previous
Deletes a pet
Built with