My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf The Art of Playful Lettering A Super-Fun Super-Creative and Super-Joyful Guide to Up
  • PDF EPUB Download Pansies by Alexis Hall Full Book
  • pdf download The Book of Practical Witchcraft A Compendium of Spells Rituals and Occult Knowledge b
  • PDF EPUB Download The Chess Deck 50 Cards for Mastering the Basics by Levy Rozman Full Book
  • Download PDF Watercolor in the Woods Paint a Whimsical World of Forest Animals Botanicals Toadstoo
  • Faefever by Karen Marie Moning on Audiobook New
  • PDF Download The Emperors Sword by Christian Cameron
  • DOWNLOAD PDF EPUB Pursued by Death by Gunnar Staalesen Don Bartlett
  • Read Pdf From Boss to Bridegroom and Family of Her Dreams by Karen Kirst Keli Gwyn
  • PDF Kindle Her Secret Twins by Janette Foreman
  • Lasso Her Heart and Mistletoe Reunion by Anna Schmidt on Iphone New Format
  • PDF Grow a New Brain How Spirit and Power Plants Can Protect and Upgrade Your Brain by Alberto Vill
  • download pdf The Woodpecker Method 2 by Axel Smith
  • DOWNLOAD PDF EPUB Left on Rancho A Novel by Francesco Paola
  • pdf download The Holiday Visitor by Tara Taylor Quinn
  • pdf download The Crash by Freida McFadden
  • Read pdf Brimstone Deluxe Limited Edition by Callie Hart
  • PDF Intarsia Knits 12 Colourful Knitwear Designs to Make Your Own by Anna Husemann
  • PDF EPUB Download Ted Templeman A Platinum Producers Life in Music by Templeman Ted Greg Renoff Ful
  • PDF EPUB Download Fagin the Thief A Novel by Allison Epstein Full Book
  • MCAT Complete 7-Book Subject Review 2024-2025 Books Online 3 Practice Tests by Kaplan Test Prep on
  • Sonic the Hedgehog The Official Cookbook by Victoria Rosenthal Ian Flynn on Ipad
  • PDF DOWNLOAD Bellas Journey by Victoria A Farias Lucia Benito on Iphone
  • Download PDF Arctic Heat A Forced Proximity LGBTQ Romance by Annabeth Albert
  • PDF DOWNLOAD The Worlds Finest Assassin Gets Reincarnated in Another World as an Aristocrat Vol.
  • PDF EPUB Download The Day I Left You A Novel by Caroline Bishop Full Book
  • Online Read Ebook Goodbye Eastern Europe An Intimate History of a Divided Land by Jacob Mikanowski
  • PDF Download Perfect Organism An Alien Isolation Companion by Andy Kelly
  • PDF DOWNLOAD A Christmas Romance by Betty Neels on Iphone
  • Online Read Ebook Devil You Know by Harmony West
  • Triple Sec A Novel by TJ Alexander on Audiobook New
  • Download Pdf The Psychology of Fashion by Carolyn Mair
  • pdf download Lead Like You Mean It Lessons on Integrity and Purpose from the C-Suite by Laysha Ward
  • PDF Download Incidents Around the House A Novel by Josh Malerman
  • pdf download Yuletide Secrets by Hope White Maggie K. Black
  • PDF DOWNLOAD Prince of Montéz Pregnant Mistress by Sabrina Philips on Iphone
  • Download PDF Big Name Fan by Ruthie Knox Annie Mare
  • World of Warcraft Rise of the Horde Lord of the Clans The Illustrated Novels by Christie Golden on
  • PDF Download The Formula How Rogues Geniuses and Speed Freaks Reengineered F1 into the Worlds Fa
  • DOWNLOAD PDF EPUB KinnPorsche Novel Vol. 2 by Daemi Avaritia Billy Balibally
  • Pdf ePub Netter Atlas of Human Anatomy Classic Regional Approach hardcover Professional Edition wit
  • Read online The Apothecary Diaries Volume 12 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinba
  • Download PDF Us The Complete Annotated Screenplay by Jordan Peele
  • PDF EPUB Download Filthy Rich Vampires Three Queens by Geneva Lee Full Book
  • Imogen Obviously by Becky Albertalli on Iphone New Format
  • Anatomy of a Train Wreck The Rise and Fall of Priming Research by Ruth Leys on Ipad
  • PDF DOWNLOAD Before We Forget Kindness by Toshikazu Kawaguchi on Iphone
  • Online Read Ebook Shes Just Like Me by Jamika Banks
  • Read online An Endless Love A Novel of Forever by Emily Sue Harvey
  • Read pdf Pathfinder RPG Guns Gears Remastered Special Edition P2 by Michael Sayre Mark Seifter
  • 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-07 22:06:50
Previous
Deletes a pet
Built with