My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Arctic Heat A Forced Proximity LGBTQ Romance by Annabeth Albert Full Book
  • download pdf On Photography by Susan Sontag
  • epub download Home at Summers End by Alys Murray
  • epub download Deadly Obsession by Katie Reus
  • PDF The Ravens How to prepare for and profit from the turbulent times ahead by Robert T. Kiyosaki
  • Abraham Lincoln A Life by Michael Burlingame Jonathan W White on Audiobook New
  • The Hypocrite A Novel by Jo Hamya on Audiobook New
  • Get Better at Anything 12 Maxims for Mastery by Scott H. Young on Ipad
  • DOWNLOADS Kingdom of Shadows by Barbara Erskine
  • DOWNLOAD PDF EPUB Lonely Castle in the Mirror Manga Vol. 5 by Mizuki Tsujimura Tomo Taketomi
  • Treasure Coast A Crime Thriller by James Foley on Ipad
  • pdf download The Dark Mirror by Samantha Shannon
  • epub download Hate Me but Let Me Stay Vol. 2 by Hijiki
  • Read online The Margraves Daughter the Enemy Prince Volume 1 by An Ogura
  • Drawing the Female Figure A Guide for Manga Hentai and Comic Book Artists by on Ipad
  • DOWNLOADS Where the Wild Things Were Boyhood and Permissive Parenting in Postwar America by Henry Je
  • Read Pdf MARVEL MASTERWORKS THE INVINCIBLE IRON MAN VOL. 18 by Dennis ONeil Marvel Various Luke
  • Read Pdf Why Its OK to Be Amoral by Ronald de Sousa
  • pdf download The Full Catastrophe All I Ever Wanted Everything I Feared by Casey Mulligan Walsh
  • The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid French Eddie Jone
  • DOWNLOADS Imposible decir adiós We Do Not Part by Han Kang
  • Online Read Ebook I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical A
  • PDF Kindle The Dead We Honor by William W. Johnstone J. A. Johnstone
  • epub download The Fly Who Flew to Space with removable glow-in-the-dark poster by Lauren Sánchez Ra
  • Read pdf The Bloodied Nightgown and Other Essays by Joan Acocella
  • PDF EPUB Download One Message Remains by Premee Mohamed Full Book
  • Download Pdf The Only One Left A Novel by Riley Sager
  • download pdf The Blunders by David Walliams Adam Stower
  • Download Pdf The Music of What Happens by Bill Konigsberg
  • Our Enemies Will Vanish The Russian Invasion and Ukraines War of Independence by Yaroslav Trofimov o
  • Pdf ePub The Crimson Road by A.G. Slatter download ebook
  • PDF Kindle Truth Matters A Dialogue on Fruitful Disagreement in an Age of Division by Robert P. Geo
  • PDF EPUB Download Greubel Forsey The Art of Invention by Michael Clerizo Full Book
  • PDF EPUB Download The Winter Soldier by Diana Palmer Delores Fossen Full Book
  • DOWNLOAD PDF EPUB The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Ali
  • PDF Kindle Malaparte A Biography by Maurizio Serra Stephen Twilley
  • PDF EPUB Download A Path to Forgiveness by Carrie Lighte Vannetta Chapman Full Book
  • DOWNLOADS Swamp Thing by Mark Millar and Phil Hester Omnibus by Mark Millar Phil Hester
  • DOWNLOADS Toxic Empathy How Progressives Exploit Christian Compassion by Allie Beth Stuckey
  • Read Pdf Reign of the Seven Spellblades Vol. 8 manga by Bokuto Uno Sakae Esuno Ruria Miyuki An
  • epub download Hooky Volume 2 by Míriam Bonastre Tur
  • DOWNLOADS Hard to Judge A Dark MMF Billionaire Romance by Meg Everly
  • Captive on the High Seas by Christina Rich on Iphone New Format
  • Read Pdf Fundamentally A Novel by Nussaibah Younis
  • PDF EPUB Download Story of Taylor Swift by Lindsey Sagar Full Book
  • Online Read Ebook Nothing to Hide 2. Young Men from Slovakia by Phil Dlab
  • DOWNLOAD PDF EPUB Pierced Ink by Dani René
  • DOWNLOADS Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Barri Fl
  • PDF Zinn the Art of Road Bike Maintenance The Worlds Best-Selling Bicycle Repair and Maintenance G
  • Download PDF Stay By My Side After the Rain Vol. 3 by Shoko Rakuta
  • 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-15 23:38:16
Previous
Deletes a pet
Built with