My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Rustler Mountain by Maisey Yates on Audiobook New
  • Download PDF Land of the Dead Lessons from the Underworld on Storytelling and Living by Brian McDona
  • PDF EPUB Download Brave New World A Graphic Novel by Aldous Huxley Fred Fordham Full Book
  • PDF EPUB Download Horror Tarot Deck and Guidebook by Aria Gmitter Abigail Larson Minerva Siegel
  • Read pdf Hillbilly Highway The Transappalachian Migration and the Making of a White Working Class
  • Read Pdf The Retirement Puzzle Book Activities and Games to Keep Your Mind Active by Summersdale P
  • Thats Not My Name by Megan Lally on Ipad
  • Read pdf His Precious Inheritance by Dorothy Clark
  • The Wager A Tale of Shipwreck Mutiny and Murder 2023 BN Author of the Year by David Grann on Audiob
  • DOWNLOADS The Worlds Finest Assassin Gets Reincarnated in Another World as an Aristocrat Vol. 7 man
  • DOWNLOAD PDF EPUB Nancys Green and Easy Kitchen Delicious Everyday Meals by Nancy Birtwhistle
  • PDF Bipolar Not So Much Understanding Your Mood Swings and Depression by Chris Aiken MD James Phe
  • PDF EPUB Download Baseball Card Price Guide 47 by Beckett Media Full Book
  • Download Pdf Man . . . Mercenary . . . Monarch by Joan Elliott Pickart
  • PDF EPUB Download The Divine Masters Oracle A 44-Card Deck and Guidebook by Kyle Gray Jennifer Hawk
  • Online Read Ebook Whats Your Favorite Color by Eric Carle
  • PDF DOWNLOAD Pathfinder Lost Omens The Mwangi Expanse P2 by Laura-Shay Adams Mariam Ahmad Jahmal
  • Download Pdf Sea of Stars The Concept Art of Bryce Kho by Bryce Kho
  • pdf download Playground by Aron Beauregard
  • Download PDF The Curious Cases of Sherlock Holmes - Volume Three by Stephen Herczeg
  • epub download Garts Thought Awesome Edition by Gart Octavius Riot
  • download pdf Our South Black Food Through My Lens by Ashleigh Shanti
  • My Hateful Man Light Novel by Yuu Nagira Rikako Kasai on Ipad
  • Pdf ePub Visions 2023__Illustrators Book by pixiv pixiv Inc Alice Prowse download ebook
  • pdf download MILES MORALES SPIDER-MAN BY CODY ZIGLAR VOL. 5 - BLOOD HUNT by Cody Ziglar Curtis Baxt
  • pdf download Detroit Become Human -Tokyo Stories- Vol. 2 manga by Quantic Quantic Dream John Neal
  • pdf download A Little Gaelic Kingdom by Tim Robinson
  • PDF EPUB Download Robert Kuok A Memoir by Andrew Tanzer Full Book
  • PDF Kindle El hombre iluminado The Sunlit Man by Brandon Sanderson
  • Read Pdf Break Point A Spicy Second Chance Sports Romance by Yahrah St. John
  • epub download Game Theory Understanding the Mathematics of Life by Brian Clegg
  • DOWNLOADS The Villainesss Guide to Not Falling in Love 03 Manga by Touya Yoimachi REN SAKUMA
  • PDF Springtime Sunshine A Novel by Debbie Macomber
  • pdf download The Art of DreamWorks Kung Fu Panda 4 by Tracey Miller-Zarneke James Hong
  • download pdf The Murder After the Night Before by Katy Brent
  • Pdf ePub I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability 1
  • PDF Brand It Like Serhant Stand Out From the Crowd Build Your Following and Earn More Money by Ry
  • Read online The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze
  • PDF EPUB Download The Innkeepers Wife by Lynn A. Coleman Full Book
  • Pdf ePub Kent State Four Dead in Ohio by Derf Backderf download ebook
  • Hilo Book 11 The Great Space Iguana A Graphic Novel by Judd Winick on Audiobook New
  • DOWNLOADS Assassins Apprentice Volume 2 Graphic Novel by Jody Houser Robin Hobb Ryan Kelly Jordie
  • Download PDF Children of Anguish and Anarchy by Tomi Adeyemi
  • PDF EPUB Download One-Night Crush by Mia Heintzelman Full Book
  • DOWNLOAD PDF EPUB Judge Dredd A Better World by Rob Williams Arthur Wyatt Henry Flint Boo Cook
  • pdf download When She Unravels by Gabrielle Sands
  • download pdf The Dark Coil Damnation by Peter Fehervari
  • PDF EPUB Download A Guest in the House by Emily Carroll Full Book
  • epub download JK Haru is a Sex Worker in Another World Manga Vol. 7 by Ko Hiratori J-ta Yamada
  • Bungo Stray Dogs Wan Vol. 10 by Sango Harukawa Neco Kanai on Iphone New Format
  • 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:53:25
Previous
Deletes a pet
Built with