My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Comeuppance by Branden Jacobs-Jenkins download ebook
  • download pdf The Waiting Game The Untold Story of the Women Who Served the Tudor Queens A History b
  • Abduction of a Slave a thrilling historical mystery set in Ancient Egypt by Dana Stabenow on Audiobo
  • Full-Time Work and the Meaning of Life by David L. Bahnsen on Ipad
  • DOWNLOADS 2034 A Novel of the Next World War by Elliot Ackerman Admiral James Stavridis USN
  • Read Pdf Cannabis Farming How to Grow Harvest and Process Organic Field-Grown Cannabis by Adam
  • Read online Dead Money A Novel by Jakob Kerr
  • Love In An Alien Purgatory by Farah Yurdozu on Audiobook New
  • Online Read Ebook The Legend of Vox Machina The Whitestone Chronicles Volume 1--Ripley by Critical R
  • epub download The Mafia Nanny A WEBTOON Unscrolled Graphic Novel by SH00 Violet Matter
  • PDF DOWNLOAD The End of Education as We Know It Regenerative Learning for Complex Times by Ida Ros
  • epub download Bungo Stray Dogs Another Story light novel Yukito Ayatsuji vs. Natsuhiko Kyougoku by K
  • The Stopover by T L Swan on Audiobook New
  • Read Pdf Fourth Wing by Rebecca Yarros
  • Pdf ePub A Psalm for the Wild-Built by Becky Chambers download ebook
  • PDF The Good Retirement Guide 2025 Everything You Need to Know about Health Property Investment
  • Read Pdf Formula 1 Technology The engineering explained by Steve Rendle
  • PDF DOWNLOAD Five Banners Inside the Duke Basketball Dynasty by John Feinstein on Iphone
  • Pdf ePub DK Top 10 Marrakech by DK Travel download ebook
  • PDF Download The Oracle of Daydreams Moonbeams by Tess Whitehurst Jessica von Braun
  • Pdf ePub A Swim in a Pond in the Rain In Which Four Russians Give a Master Class on Writing Readin
  • pdf download El poder de quererte by María Paz Blanco
  • Pdf ePub The Museum of Other People From Colonial Acquisitions to Cosmopolitan Exhibitions by Adam
  • PDF Download Septology by Jon Fosse Damion Searls
  • PDF Kindle Mary Ellen Mark Photofile by Caroline Bénichou
  • Read Pdf The Perfect Son by Freida McFadden
  • pdf download Color Third Edition A workshop for artists and designers by David Hornung
  • Capitana by Cassandra James on Iphone New Format
  • The Leadership Spectrum A Continuum of Empathetic Leader Behaviors by Barbara Welss Eversole on Ipho
  • Though I Am an Inept Villainess Tale of the Butterfly-Rat Body Swap in the Maiden Court Light Novel
  • download pdf If You Were a Kid at the Signing of the Constitution 1787 by Janel Rodriguez Makenzie
  • PDF Download League of Legends Realms of Runeterra by Riot Games
  • DOWNLOAD PDF EPUB Beyond Painting by Max Ernst
  • Pdf ePub A Vindication of the Rights of Woman by Mary Wollstonecraft download ebook
  • The Keepers A Thrilling Paranormal Romance by Heather Graham on Ipad
  • PDF DOWNLOAD How to Not Suck as a Christian by Jeremy Steele Brian McLaren on Iphone
  • DOWNLOADS Beauty in the Blood A Novel by Charlotte Carter
  • DOWNLOAD PDF EPUB The Collected Works of Gerard Manley Hopkins Volume VI Sketches and Scholarly St
  • PDF EPUB Download Alien Covenant Davids Drawings by Dane Hallett Matt Hatton Full Book
  • DOWNLOAD PDF EPUB Pandys Bad Day Gabbys Dollhouse Scholastic Reader Level 1 4 by Gabrielle Reyes
  • Read pdf Ghoulslayer by Darius Hinks
  • One Nation Under Guns How Gun Culture Distorts Our History and Threatens Our Democracy by Dominic Er
  • Download Pdf Texas Women Are On the Money Three Centuries of Female Entrepreneurs in the Lone Star S
  • Pdf ePub A History of Dinosaurs in 50 Fossils by Paul M. Barrett download ebook
  • PDF Kindle Knife Drop Creative Recipes Anyone Can Cook by Nick DiGiovanni Gordon Ramsay
  • epub download Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • PDF Kindle Artificial Condition The Murderbot Diaries by Martha Wells
  • pdf download We Could Be Rats A Novel by Emily Austin
  • PDF Download Milk and Honey 10th Anniversary Collectors Edition by Rupi Kaur
  • Online Read Ebook Liberated The Radical Art and Life of Claude Cahun by Kaz Rowe
  • 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