My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Poetry by Angela Brown
  • download pdf The Deep Dark A Graphic Novel by Molly Knox Ostertag
  • PDF EPUB Download Esperanza. La autobiografía Memorias del papa Francisco Hope by Pope Francis Ful
  • epub download The Invisible Ache Black Men Identifying Their Pain and Reclaiming Their Power by Cour
  • Dreaming Japanese by Marty Friedman Jon Wiederhorn on Iphone New Format
  • PDF Download Nightshade Revenge by Anthony Horowitz
  • Download Pdf Frenzy 60 Stories of Sudden Sex by Alison Tyler
  • A Vindication of the Rights of Woman by Mary Wollstonecraft on Audiobook New
  • Read Pdf MegaThreats Ten Dangerous Trends That Imperil Our Future And How to Survive Them by Nour
  • Alliance Unbound by C. J. Cherryh Jane S. Fancher on Ipad
  • Download PDF The Poisoner by I V Ophelia
  • PDF EPUB Download The Sender A Story About When Right Words Make All The Difference by Kevin Elko
  • PDF Influencing Death Reframing Dying for Better Living by Penny Hawkins Smith
  • PDF Dahlia in Bloom Crafting a Fresh Start With Magical Tools Volume 8 by Hisaya Amagishi Kei Osm
  • Pdf ePub Bloodshot by Fred Van Lente download ebook
  • PDF EPUB Download Night Sky Almanac 2025 A stargazers guide by Wil Tirion Full Book
  • PDF DOWNLOAD An ABC of Childhood Tragedy by Jordan B Peterson Juliette Fogra on Iphone
  • DOWNLOADS Otaku Vampires Love Bite Vol. 2 by Julietta Suzuki
  • Wildcat by Adam Paulhus on Audiobook New
  • Online Read Ebook Victorian Housecats to Knit by Sara Elizabeth Kellner
  • PDF EPUB Download Filthy Rich Vampires Three Queens by Geneva Lee Full Book
  • PDF Download The Complete Harrow County by Cullen Bunn Tyler Crook
  • epub download Momo Arashima Breaks the Mirror of the Sun by Misa Sugiura
  • Read Pdf DAREDEVIL BY CHIP ZDARSKY OMNIBUS VOL. 2 RAFAEL DE LATORRE COVER by Chip Zdarsky Marvel
  • Download PDF Make Work Fair Data-Driven Design for Real Results by Iris Bohnet Siri Chilazi
  • DOWNLOADS Succession Season One The Complete Scripts by Jesse Armstrong
  • PDF Download Doctor Who The Official Guide by Doctor Who
  • DOWNLOADS Owned How Tech Billionaires on the Right Bought the Loudest Voices on the Left by Eoin Hig
  • Online Read Ebook Jane Eyre Signature Classics by Charlotte Brontë
  • Read Pdf Go Ahead in the Rain Notes to A Tribe Called Quest by Hanif Abdurraqib
  • DOWNLOAD PDF EPUB All Your Perfects by Colleen Hoover
  • A Better Nightmare by Megan Freeman on Ipad
  • PDF Kindle Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis D.C.
  • PDF DOWNLOAD Credence by Penelope Douglas on Iphone
  • Online Read Ebook Colette Decides to Die Vol. 2 by Alto Yukimura
  • pdf download Weyward A Novel by Emilia Hart
  • PDF EPUB Download I Had That Same Dream Again Novel by Yoru Sumino Full Book
  • DOWNLOADS The Master and Margarita Mirra Ginsburg Translation by Mikhail Bulgakov Diana Burgin Kat
  • PDF EPUB Download Rascal Does Not Dream of a Lost Singer light novel by Hajime Kamoshida Keji Miz
  • Bright by Jessica Jung on Audiobook New
  • epub download The Violence of Love Race Family and Adoption in the United States by Kit W. Myers
  • DOWNLOAD PDF EPUB Lonely Planet Austria by Rudolf Abraham Haywood Enright. Becki Priestley Antho
  • epub download Something More Than Love When Your Husband Dies and Takes Half Your Heart With Him by
  • Cant Get Enough by Kennedy Ryan on Iphone New Format
  • Purposeful Practice for Poker The Modern Approach to Studying Poker by Dr. Patricia Cardner Gareth
  • Download PDF 7FATES CHAKHO Vol. 1 comic by HYBE BTS
  • PDF EPUB Download JK Haru is a Sex Worker in Another World Manga Vol. 3 by Ko Hiratori J-ta Yamada
  • PDF EPUB Download The Doomsday Trail by Peter J. Murray Full Book
  • LIAR by Tate James on Audiobook New
  • Pdf ePub Mastering Elliott Wave by Eric Hall Glenn Neely download ebook
  • 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
Previous
Deletes a pet
Built with