My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD For Love of Country Why I left the Democratic Party by Tulsi Gabbard on Iphone
  • Read pdf A Cold Dose of Murder by Emily George
  • Pdf ePub The Hidden Dungeon Only I Can Enter Manga Vol. 12 by Meguru Seto Tomoyuki Hino Takehana
  • Read Pdf You Love Me by Caroline Kepnes
  • PDF Kindle The Psychology of Fashion by Carolyn Mair
  • Online Read Ebook The Body at the Roman Baths A gripping and charming cozy crime novel by Kate Hardy
  • PDF DOWNLOAD Disenchantment Untold Tales Vol.2 by Matt Groening on Iphone
  • DOWNLOAD PDF EPUB Promised One The Wonderful Story of Easter by Antonia Woodward
  • PDF DOWNLOAD In the Foothills of the Himalayas by Sarah Hussain on Iphone
  • The Art of Michael Fell by Andrew Wilton on Ipad
  • Holly A Belladonna Novella by Adalyn Grace on Audiobook New
  • PDF Download Finding Chika A Little Girl an Earthquake and the Making of a Family by Mitch Albom
  • download pdf Julia A Novel by Sandra Newman
  • Read Pdf Lebanese Civil War Volume 4 - The Showdown 8-12 June 1982 by Tom Cooper Efim Sandler
  • PDF DOWNLOAD Brimstone Deluxe Limited Edition by Callie Hart on Iphone
  • DOWNLOADS Where to Start A Survival Guide to Anxiety Depression and Other Mental Health Challenges
  • PDF Download The Art of Magic The Gathering - Ravnica by James Wyatt
  • DOWNLOAD PDF EPUB Disclaimer by Renée Knight
  • download pdf Eros at Nadir by Mike Resnick
  • Read online Mail-Order Mistletoe Brides Christmas Hearts Mistletoe Kiss in Dry Creek by Jillian Ha
  • PDF EPUB Download El diario de Tita Como agua para chocolate Titas Diary Like Water for Chocolate
  • The Retirement Puzzle Book Activities and Games to Keep Your Mind Active by Summersdale Publishers o
  • Online Read Ebook The Powerless Reckless Collection by Lauren Roberts
  • DOWNLOADS On the Art and Craft of Doing Science by Kenneth Catania
  • Pdf ePub Last Trip to Salida by Anissa Lujan Peyton Bassett Madeline Dyer download ebook
  • Download Pdf DAREDEVIL BY CHIP ZDARSKY OMNIBUS VOL. 2 RAFAEL DE LATORRE COVER by Chip Zdarsky Marve
  • A Discovery of Witches by Deborah Harkness on Audiobook New
  • Read Pdf The Game Masters Book of Instant Towns and Cities 160 unique villages towns settlements
  • PDF Playground by Aron Beauregard
  • PDF EPUB Download The Boyhood of Cain by Michael Amherst Full Book
  • DOWNLOADS Ians Ultimate Gamble An African American Romance by Brenda Jackson
  • download pdf The Language of Remembering by Patrick Holloway
  • PDF DOWNLOAD Always by Helen Hardt on Iphone
  • PDF DOWNLOAD Quantum Radio by A.G. Riddle on Iphone
  • PDF EPUB Download Fart Quest The Dragons Dookie by Aaron Reynolds Cam Kendell Full Book
  • PDF DOWNLOAD The Gwendy Trilogy Bind-Up Gwendys Button Box Gwendys Magic Feather Gwendys Final T
  • epub download Talula Had a Little Dog by Love Haze
  • PDF DOWNLOAD White Holes by Carlo Rovelli on Iphone
  • PDF EPUB Download The Afternoon of Christianity The Courage to Change by Tomás Halík Gerald Turner
  • PDF Kindle El coach de Sillicon Valley Trillion Dollar Coach The Leadership Playbook of Silicon
  • Moments at Home Interior Inspiration for Every Room by Steve Cordony on Iphone New Format
  • epub download System Collapse by Martha Wells
  • DOWNLOADS The Overactive Mind Turning Anxiety into Strength by Andrew Espinosa
  • Download Pdf House of Flame and Shadow by Sarah J. Maas
  • Download PDF The Fine Art of Erections by Gruenholtz
  • PDF Kindle Escaping Peril A Graphic Novel Wings of Fire Graphic Novel 8 by Tui T. Sutherland Mike
  • PDF Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage
  • Pdf ePub Swing Trading For Dummies by Omar Bassal download ebook
  • PDF EPUB Download The Portrait of a Lady by Henry James Full Book
  • PDF EPUB Download Lightning Can Strike Twice My Life as a Fury by Tommy Fury Full Book
  • 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:13:55
Previous
Deletes a pet
Built with