My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Pseudoscience An Amusing History of Crackpot Ideas and Why We Love Them by Lydia Kang
  • download pdf The Youngest One in the Room by Dayna Adelman
  • Pdf ePub An Island Princess Starts a Scandal by Adriana Herrera download ebook
  • DOWNLOADS Plus-Sized Elf Second Helping Vol. 4 by Synecdoche
  • pdf download The Will of the Many by James Islington
  • Online Read Ebook Cook Like a Real Italian Super Sexy and Simple Recipes from Cooking with Bello by
  • Pdf ePub Knife River A Novel by Justine Champine download ebook
  • Download Pdf People the Planet Needs Now Voices for Justice Science and a Future of Promise by Dud
  • PDF DOWNLOAD The Sounds of Life How Digital Technology Is Bringing Us Closer to the Worlds of Anim
  • Download PDF Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham
  • PDF EPUB Download Batman Knightfall Omnibus Vol. 2 Knightquest 2025 Edition by Chuck Dixon Michael
  • DOWNLOADS Trophies and Scars Ray Evernham by Ray Evernham Joe Garner Jeff Gordon
  • House of Huawei The Secret History of Chinas Most Powerful Company by Eva Dou on Ipad
  • Read Pdf Crochet Sweaters with a Textured Twist 15 Timeless Patterns for Gorgeous Handcrafted Garm
  • DOWNLOAD PDF EPUB Daybreak A Novel by Matt Gallagher
  • Occult Germany Old Gods Mystics and Magicians by Christopher McIntosh on Audiobook New
  • Read online The Waiting A Ballard and Bosch Novel by Michael Connelly
  • Pdf ePub The Deep Dark A Graphic Novel by Molly Knox Ostertag download ebook
  • Pdf ePub Witchcraft for Wayward Girls by Grady Hendrix download ebook
  • DOWNLOADS Today Tonight Tomorrow by Rachel Lynn Solomon
  • Download PDF The Natural Soapmaking Handbook Easy Recipes and Techniques for Beautiful Soaps from He
  • Read pdf Melania by Melania Trump
  • Philosophy 2e Asking Questions Seeking Answers by Stephen Stich Thomas Donaldson on Ipad
  • epub download Born to Be Badger The Honey Badger Chronicles 5 by Shelly Laurenston
  • PDF Download Here and Now by Corinne Michaels
  • PDF Download The Art of Overwatch Volume 2 Limited Edition by
  • A Tiny Piece of Blue A Novel by Charlotte Whitney on Audiobook New
  • Indiscretion by VI Keeland on Audiobook New
  • DOWNLOADS Double Lives by Mary Monroe
  • Download PDF Nancys Green and Easy Kitchen Delicious Everyday Meals by Nancy Birtwhistle
  • Imposible decir adiós We Do Not Part by Han Kang on Ipad
  • Ambessa Chosen of the Wolf A League of Legends Arcane Novel by C. L. Clark on Audiobook New
  • DOWNLOAD PDF EPUB Cuentos by Dan Henderson
  • Pdf ePub Seasons of the Witch - Ostara Oracle by Lorriane Anderson Tijana Lucovic Juliet Diaz dow
  • Read Pdf Brimstone Deluxe Limited Edition by Callie Hart
  • PDF Kindle Big Name Fan by Ruthie Knox Annie Mare
  • Download Pdf Heist Royale Thieves Gambit Book 2 by Kayvion Lewis
  • PDF DOWNLOAD Revolution in Poetic Language by Julia Kristeva on Iphone
  • Read pdf League of Legends Realms of Runeterra by Riot Games
  • Beas Bad Day by Tom Percival on Iphone New Format
  • PDF EPUB Download Deserving Ryleigh by Susan Stoker Full Book
  • Read online The Three-Body Problem Vol. 1 comic The Comic Edition by XuDong Cai Jin Cai Twilight
  • PDF Download Si te gusta la oscuridad You Like It Darker by Stephen King
  • DOWNLOADS When the Moon Hatched A Novel by Sarah A. Parker
  • Online Read Ebook Hungerstone by Kat Dunn
  • PDF Download The Disputed Austro-Hungarian Border Agendas Actors and Practices in Western Hungar
  • PDF Download The Power of Provision by Gary Keesee
  • Read Pdf Mi sombría Vanessa My Dark Vanessa by Kate Elizabeth Russell
  • PDF DOWNLOAD Jurassic Park The Ultimate Visual History by James Mottram Sam Neill Laura Dern Je
  • pdf download TSF Monogatari by Shindo L
  • 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-14 21:32:15
Previous
Deletes a pet
Built with