My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Dead Money A Novel by Jakob Kerr download ebook
  • Pdf ePub Dead Money A Novel by Jakob Kerr download ebook
  • pdf download City Spies Spanish Edition by James Ponti
  • Read online The Magic of Silence Caspar David Friedrichs Journey Through Time by Florian Illies Ton
  • epub download Night Sky Almanac 2025 A stargazers guide by Wil Tirion
  • Pdf ePub 1984 by George Orwell Dolen Perkins-Valdez Sandra Newman download ebook
  • Download PDF Sweet Nothings Confessions of a Candy Lover by Sarah Perry
  • PDF This Is Why You Dream What Your Sleeping Brain Reveals About Your Waking Life by Rahul Jandial
  • Read Pdf A Pirates Life for Tea by Rebecca Thorne
  • epub download Mastering Quantum Mechanics Essentials Theory and Applications by Barton Zwiebach
  • Download Pdf Their Dying Embrace A completely gripping and heart-stopping crime thriller by Helen Ph
  • pdf download Kill for Me Kill for You A Novel by Steve Cavanagh
  • PDF Download Pen and Wash An Artists Guide to Combining Ink and Watercolour by John Harrison
  • DOWNLOADS Heaven A Novel by Mieko Kawakami Sam Bett David Boyd
  • Jim Hensons Labyrinth Original Motion Picture Adaptation by Sid Jacobson John Buscema Romeo Tangha
  • PDF Download A Prey to Murder A George Molly Palmer-Jones Novel by Ann Cleeves
  • Read online Introduction to Educational Research by Craig A Mertler
  • PDF EPUB Download The Dawn of the Cursed Queen by Amber V Nicole Full Book
  • DOWNLOADS How the Railways Will Fix the Future Rediscovering the Essential Brilliance of the Iron Ro
  • Read pdf How to Starve Cancer ...and Then Kill It With Ferroptosis by Jane McLelland
  • PDF EPUB Download The Betrayal Bind How to Heal When the Person You Love the Most Hurts You the Wo
  • Online Read Ebook Beneath the Trees Where Nobody Sees by Patrick Horvath
  • PDF Download Contested City Citizen Advocacy and Survival in Modern Baghdad by Alissa Walter
  • pdf download Legion by William Peter Blatty
  • PDF Kindle The Saga of Sudden Sam The Rise Fall and Redemption of Sam McDowell by Sam McDowell M
  • Prince Freya Vol. 11 by Keiko Ishihara on Audiobook New
  • Download Pdf Melania by Melania Trump
  • Petting Zoo by Jake Komer on Audiobook New
  • PDF Download Life on Svalbard Finding Home on a Remote Island Near the North Pole by Cecilia Blomd
  • PDF EPUB Download Sorry I Didnt Mean to Make it Weird by Avalon Dragoon Full Book
  • DOWNLOADS Out of Circulation A Village Library Mystery 11 by Elizabeth Spann Craig
  • Read Pdf The Keepers A Thrilling Paranormal Romance by Heather Graham
  • Download Pdf Mobility A Novel by Lydia Kiesling
  • epub download Mila The Superhero Monarch by Kenneth Akiri
  • Pdf ePub The Art of Discovery Digging into the Past in Renaissance Europe by Maren Elisabeth Schwab
  • DOWNLOAD PDF EPUB Wicked The Life and Times of the Wicked Witch of the West by Gregory Maguire
  • Read pdf The Dark Portal Book One of The Deptford Mice by Robin Jarvis
  • Vietnam Morning to Midnight A cookbook by Jerry Mai by Jerry Mai on Ipad
  • The Wings Upon Her Back by Samantha Mills on Ipad
  • PDF EPUB Download A Forty Year Kiss A Novel by Nickolas Butler Full Book
  • PDF EPUB Download With What You Have by Danielle Codey Full Book
  • The Pirate King The Strange Adventures of Henry Avery and the Birth of the Golden Age of Piracy by S
  • Download PDF The Frontier Lord Begins with Zero Subjects Volume 6 by Fuurou Kinta Hengtee Lim
  • PDF Download Snow Ink 2 by Miyuki Unohana
  • Exalting Jesus in Hosea Joel Amos Obadiah by Allan Moseley Jonathan Akin Ph.D. on Iphone New For
  • Three Seconds of Courage How Small Acts of Bravery Lead to Big Change by Riley Kehoe on Ipad
  • The Comeuppance by Branden Jacobs-Jenkins on Ipad
  • Online Read Ebook Is She Really Going Out with Him by Sophie Cousens
  • PDF EPUB Download Comparative Financial Regulation by Alessio M. Pacces Edoardo D. Martino Hossein
  • Notes of a Native Son by James Baldwin Edward P. Jones on Ipad
  • 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