My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • PDF Kindle Bofuri I Dont Want to Get Hurt so Ill Max Out My Defense. Vol. 15 light novel by Yuumi
  • download pdf The Last Hamilton A Novel by Jenn Bregman
  • Read online The Mafia Nanny A WEBTOON Unscrolled Graphic Novel by SH00 Violet Matter
  • Download PDF The Titans Bride Vol. 6 by ITKZ
  • PDF EPUB Download The Unveiled Tarot An 80-Card Deck and Guidebook by Jesse Lonergan Mike Mignola
  • Blue Sisters A Novel by Coco Mellors on Ipad
  • Lonely Castle in the Mirror Manga Vol. 5 by Mizuki Tsujimura Tomo Taketomi on Audiobook New
  • Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramakrishnan on Audiobook
  • Read Pdf Living Between Hope and Heartache by Jessie Copeland
  • pdf download Lloyd Kaufman Interviews by Mathew Klickstein
  • Download Pdf Fearless by Lauren Roberts
  • epub download Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Ke
  • Texas Born by Diana Palmer on Iphone New Format
  • Elevated Ambitions by Aurora Steinhart on Ipad
  • A Royal Conundrum The Misfits by Lisa Yee Dan Santat on Iphone New Format
  • PDF Download The Wood at Midwinter by Susanna Clarke
  • PDF Download The Strange Case of Jane O. A Novel by Karen Thompson Walker
  • The Trading Game A Confession by Gary Stevenson on Audiobook New
  • 50 Mistakes You Should Know Valuable Lessons for Every Chess Player by Jesus De La Villa on Iphone N
  • Download Pdf Illusion of Stars by Sarah Marie Page
  • Read pdf Dungeon Life 3 An Isekai LitRPG by Khenal
  • PDF EPUB Download Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli Full Book
  • PDF Download A New Way to Bake Re-imagined Recipes for Plant-based Cakes Bakes and Desserts by Ph
  • PDF EPUB Download Deep Resilience A four-step journey to unshakable inner strength by Melli OBrien
  • PDF Download The Sun Sister A Novel by Lucinda Riley
  • PDF DOWNLOAD Easy Learning French Dictionary Trusted support for learning by Collins on Iphone
  • pdf download Before We Forget Kindness by Toshikazu Kawaguchi
  • Download PDF The Stories Old Towns Tell A Journey through Cities at the Heart of Europe by Marek Koh
  • Download PDF Here Be Dragons Treading the Deep Waters of Motherhood Mean Girls and Generational Tr
  • Pdf ePub A Promise of Peridot by Kate Golden download ebook
  • pdf download Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • The Origins of Judaism An Archaeological-Historical Reappraisal by Yonatan Adler on Ipad
  • The Landmark Xenophons Anabasis by on Ipad
  • PDF The Dog Who Followed the Moon by James Norbury
  • Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Joseph Leo Koerner
  • download pdf Queen of Storms Book Two of The Firemane Saga by Raymond E. Feist
  • Read online Lonely Planet Andalucia by Anna Kaminski Esme Fox Paul Stafford
  • PDF DOWNLOAD Shungite Protection Healing and Detoxification by Regina Martino on Iphone
  • PDF A CHRISTMAS TRAGEDY by Agatha Christie The Gunston Trust
  • epub download No Longer Human by Junji Ito Osamu Dazai
  • Pdf ePub Too Close to Home by Lynette Eason download ebook
  • Captive on the High Seas by Christina Rich on Audiobook New
  • PDF Promised One The Wonderful Story of Easter by Antonia Woodward
  • Read online I Am Money by Julia Cook Garrett Gunderson Josh Cleland
  • Download PDF For You and Only You A Joe Goldberg Novel by Caroline Kepnes
  • Pdf ePub A to Z of The Designers Republic by Ian Anderson download ebook
  • PDF EPUB Download Alas de sangre Empíreo 1 Edición coleccionista enriquecida y limitada Fourth W
  • epub download The Alchemist of Monsters and Mayhem An Accidental Alchemist Mystery by Gigi Pandian
  • Read online River East River West A Novel by Aube Rey Lescure
  • 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 23:03:01
Previous
Deletes a pet
Built with