My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Murderbot Diaries Vol. 2 Rogue Protocol Exit Strategy by Martha Wells download ebook
  • Pdf ePub Short Game Mitsuru Adachis Baseball Short Story Collection by Mitsuru Adachi download eboo
  • A Web of Obsidian The Obsidian Sisterhood 1 by Lydia M Hawke on Audiobook New
  • Read Pdf Hidden Pictures A Novel by Jason Rekulak
  • Online Read Ebook Legendary en español Caraval 2 - Ed. Coleccionista by Stephanie Garber
  • Download Pdf His Roommates Pleasure by Lana McGregor
  • Online Read Ebook Absolute Transmetropolitan Vol. 3 2025 Edition by Warren Ellis Darick Robertson
  • epub download Charcoal Artisan Sketch Book by Flame Tree Studio
  • Read pdf Blue Jerusalem British Conservatism Winston Churchill and the Second World War by Kit K
  • Read pdf The Apothecary Diaries Volume 12 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinbac
  • download pdf Wild Houses by Colin Barrett
  • Read online Yellowface by R. F. Kuang
  • Pdf ePub American Horticultural Society Essential Guide to Perennial Gardening Techniques and Know-
  • Read pdf So Im a Spider So What Vol. 14 manga by Okina Baba Asahiro Kakashi Jenny McKeon McKeo
  • Pdf ePub Protecting the Pack by Julie Miller download ebook
  • Pdf ePub 8 Lives of a Century-Old Trickster A Novel by Mirinae Lee download ebook
  • DOWNLOADS Pen and Wash An Artists Guide to Combining Ink and Watercolour by John Harrison
  • Casualties of Truth by Lauren Francis-Sharma on Iphone New Format
  • DOWNLOADS Controlling Contagion Epidemics and Institutions from the Black Death to Covid by Sheilagh
  • Read pdf The Mundus by N.H. Pritchard Paul Stephens
  • PDF DOWNLOAD Hearts That Cut by Kika Hatzopoulou on Iphone
  • PDF Kindle The Girl Most Likely To A Novel by Julie Tieu
  • DOWNLOAD PDF EPUB Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramak
  • PDF The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki Yamori
  • Online Read Ebook Conquistadores A New History of Spanish Discovery and Conquest by Fernando Cervant
  • Download Pdf Theres No Freaking Way Ill be Your Lover Unless... Manga Vol. 2 by Teren Mikami Musshu
  • PDF EPUB Download The Wok Recipes and Techniques by J. Kenji Lopez-Alt Full Book
  • DOWNLOADS Promised One The Wonderful Story of Easter by Antonia Woodward
  • PDF Download Tokyo Revengers Omnibus Vol. 19-20 by Ken Wakui
  • pdf download Daybreak A Novel by Matt Gallagher
  • PDF Kindle The Books of Clash Volume 3 Legendary Legends of Legendarious Achievery by Gene Luen Yan
  • DOWNLOAD PDF EPUB American Populist Huey Long of Louisiana by Thomas E. Patterson
  • Read Pdf Double Lives by Mary Monroe
  • Read Pdf Art of Invincible Season 1 by Marc Sumerak Robert Kirkman
  • Download PDF Galway Confidential A Jack Taylor Novel by Ken Bruen
  • pdf download Noma 2.0 Vegetable Forest Ocean by Mette Søberg René Redzepi Junichi Takahashi
  • epub download The Restless Wave A Novel of the United States Navy by James Stavridis USN
  • A Little Sluggers Guide to the Unwritten Rules of Baseball and Life by Patrick Renna Tommy Parker o
  • pdf download A Rumored Engagement by Lily George
  • pdf download The Breathing Cure for Yoga Apply Science Behind Ancient Wisdom for Health and Well-Bei
  • PDF Kindle Cashing Out Win the Wealth Game by Walking Away by Julien Saunders Kiersten Saunders
  • Pdf ePub How Do I Turn My Best Friend Into My Girlfriend Vol. 3 by Syu Yasaka download ebook
  • Five Years After A John Matherson Novel by William R. Forstchen on Iphone New Format
  • epub download Minatos Laundromat Vol. 4 by Yuzu Tsubaki Sawa Kanzume
  • El niño el topo el zorro y el caballo The Boy the Mole the Fox and the Horse by Charlie Mackes
  • Infinity Alchemist by Kacen Callender on Audiobook New
  • Read online Crossplay Love Otaku x Punk Vol. 11 by Toru
  • PDF The Ranchers Baby Surprise and The Cowboys Unexpected Baby by Kat Brookes Stephanie Dees
  • Online Read Ebook Golden State The Making of California by Michael Hiltzik
  • Read pdf Eclipse by Wilder Poetry
  • 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
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-06 08:58:50
Previous
Deletes a pet
Built with