My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Beautiful Broken Love by Shanora Williams
  • Domain-Driven Laravel Learn to Implement Domain-Driven Design Using Laravel by Jesse Griffin on Audi
  • Online Read Ebook Growing Up Farley A Chris Farley Story by Kevin Farley Chris Farley Frank Marraf
  • PDF Download Sick Houses Haunted Homes and the Architecture of Dread by Leila Taylor
  • La rosa de Hereford by Brenna Watson on Iphone New Format
  • Read Pdf Matildas Wedding and A Brevia Beginning by Betty Neels Michelle Major
  • PDF EPUB Download Being with Busyness Zen Ways to Transform Overwhelm and Burnout by Brother Phap Hu
  • Read online The Art and Soul of Dune Part Two by Tanya Lapointe Stefanie Broos
  • PDF Download Emily Wildes Encyclopaedia of Faeries Book One of the Emily Wilde Series by Heather F
  • Online Read Ebook One Night with the Best Man by Amanda Berry
  • PDF EPUB Download Black Hat Python 2nd Edition Python Programming for Hackers and Pentesters by Jus
  • Download PDF Rick and Morty Vol. 2 The Space Shake Saga Part Two by Alex Firer Fred C. Stresing Ma
  • PDF Portrait of a Feminist A Memoir in Essays by Marianna Marlowe
  • epub download Joy of Believing by Madeleine Delbrel
  • DOWNLOADS Dune Exposures by Josh Brolin Greig Fraser
  • PDF Download French - English Illustrated Dictionary A Bilingual Visual Guide to Over 10 000 Frenc
  • PDF Download Teen Titans Starfire by Kami Garcia Gabriel Picolo
  • DOWNLOADS Mothers Day MiracleBlessed Baby by Lois Richer
  • The Lost Library by Rebecca Stead Wendy Mass on Iphone New Format
  • Nothing to Hide 2. Young Men from Slovakia by Phil Dlab on Ipad
  • Read Pdf The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze
  • pdf download Made of Rivers by Emory Hall
  • Read online A Chance to Heal by Vannetta Chapman Rebecca Kertz
  • Read online The Saga of Tanya the Evil Vol. 25 manga by Carlo Zen Shinobu Shinotsuki Chika Tojo
  • Read online Pokémon Timelines A Journey Through the Animated Series by Katherine Andreou Glenn Daki
  • PDF EPUB Download Fall in Love with the Problem Not the Solution A Handbook for Entrepreneurs Up
  • Online Read Ebook Mine for a Moment by Catharina Maura
  • Christmas Texas Style by Tina Leonard Leah Vale Linda Warren on Ipad
  • PDF EPUB Download Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Changin
  • PDF Kindle Uneasy Street A Sweet by Becky Wade
  • pdf download Almost Sunset by Wahab Algarmi
  • Driving Her Impossible Billionaire by Ella Hayes on Iphone New Format
  • Read online Now Youre Mine A Dark Stalker Romance by Morgan Bridges
  • pdf download Practical Antenna Handbook Sixth Edition by Joseph J. Carr Karl F. Warnick George W.
  • PDF EPUB Download Imposible decir adiós We Do Not Part by Han Kang Full Book
  • Read online The Wanderlust Kitchen A spiritual guide to healing recipes from around the world by Sam
  • download pdf Plus-Sized Elf Second Helping Vol. 4 by Synecdoche
  • Transformers EarthSpark The Official Guidebook by Ryder Windham on Ipad
  • The Wildest Things A Novel by Andrea Hannah on Ipad
  • PDF No B.S. Guide to Successful Marketing Automation The Ultimate No Holds Barred Guide to Using Te
  • Download PDF No Rest for the Wicked by Kresley Cole
  • PDF EPUB Download Magic Stone Gourmet Eating Magical Power Made Me the Strongest Volume 8 Light Nove
  • PDF Download Crumble A Graphic Novel by Meredith McClaren Andrea Bell
  • PDF DOWNLOAD CompTIA Security SY0-701 Cert Guide by Lewis Heuermann on Iphone
  • Read Pdf The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World by Mar
  • The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle on Iphone New Format
  • epub download The Extraterrestrial Species Almanac The Ultimate Guide to Greys Reptilians Hybrids
  • PDF Kindle Otaku Vampires Love Bite Vol. 2 by Julietta Suzuki
  • PDF Download Daddy Wanted by Renee Andrews
  • DOWNLOAD PDF EPUB Harlequin Romantic Suspense March 2025 - Box Set by Patricia Sargeant Lisa Chil
  • 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-08 00:53:30
Previous
Deletes a pet
Built with