My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf One Night with the Best Man by Amanda Berry
  • epub download Jujutsu Kaisen The Official Anime Guide Season 1 by Gege Akutami Jujutsu Kaisen Produ
  • PDF Battle Mountain by C. J. Box
  • PDF EPUB Download Lover Birds by Leanne Egan Full Book
  • DOWNLOAD PDF EPUB The Divine Design The Untold Story of Earths and Humanitys Evolution in Consciou
  • Download PDF Vipers and Virtuosos Deluxe Edition by Sav R. Miller
  • Read online Yes No or Maybe Manga Vol. 1 by Michi Ichiho Yukimura Lala Takemiya
  • PDF EPUB Download The Bad Box by Carlton Mellick III Full Book
  • Read Pdf Back After This A Novel by Linda Holmes
  • Pdf ePub Disappointing Affirmations Sticker Book 100 Stickers to Stick Wherever by Dave Tarnowski d
  • The Nativity Story by Juliet David Jo Parry on Iphone New Format
  • PDF Kindle After-Hours Proposal by Trish Morey
  • Read pdf Carmilla French edition by Joseph Sheridan Le Fanu
  • PDF Kindle The Discerning Gentlemans Guide A Historical Romance by Virginia Heath
  • DOWNLOAD PDF EPUB Looking for You A Novel by Alexander McCall Smith
  • DOWNLOADS Kingdoms of Faith A New History of Islamic Spain by Brian A. Catlos
  • Pdf ePub The Mighty Quinns Tristan by Kate Hoffmann download ebook
  • DOWNLOADS All or Nothing How Trump Recaptured America by Michael Wolff
  • DOWNLOADS Playground A Novel by Richard Powers
  • Download Pdf Beyond Darning Creative mending techniques by Hikaru Noguchi
  • DOWNLOAD PDF EPUB Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Chang
  • PDF EPUB Download Shoestring Theory by Mariana Costa Full Book
  • PDF Download Bipolar Not So Much Understanding Your Mood Swings and Depression by Chris Aiken MD
  • DOWNLOAD PDF EPUB Nuevas evidencias científicas de la existencia de Dios New Scientific Evidence
  • Read pdf Oh The Poles Youll Climb Celebrating LineMen and the Kids Who Keep Them Going by Linecra
  • Read Pdf Learn WinUI 3 - Second Edition Leverage WinUI and the Windows App SDK to create modern Wi
  • download pdf Darkfever by Karen Marie Moning
  • download pdf Thieves Gambit by Kayvion Lewis
  • PDF DOWNLOAD Bone Pendant Girls by Terry S. Friedman on Iphone
  • PDF EPUB Download Kharn Eater of Worlds by Anthony Reynolds Full Book
  • epub download Forgotten Skills of Cooking 700 Recipes Showing You Why the Time-honoured Ways Are the
  • pdf download Snarky Sharky by Bethan Clarke Nikolas Ilic
  • PDF Beautiful Days Stories by Zach Williams
  • DOWNLOAD PDF EPUB Beautiful Things The Complete Manga Collection by Narise Konohara Nao Inui
  • Online Read Ebook The Four Horsemen Food and Wine for Good Times from the Brooklyn Restaurant by Nic
  • PDF EPUB Download Malaparte A Biography by Maurizio Serra Stephen Twilley Full Book
  • Top Biller The Life of a Recruiter by Steve Guest on Iphone New Format
  • PDF DOWNLOAD Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Deb
  • Pdf ePub Tied to You Vol. 4 by WHAT Micah Kim download ebook
  • pdf download The Long Walk by Stephen King
  • Online Read Ebook Hacia cero Novela policiaca y de misterio Towards Zero A Mystery and Detective N
  • PDF DOWNLOAD The Shadows that Listen by Louisa Carmody on Iphone
  • Pdf ePub An Unlikely Union by Shannon Farrington download ebook
  • Online Read Ebook Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis
  • Read Pdf Elegy Southwest A Novel by Madeleine Watts
  • Read pdf The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World by Mar
  • Read pdf Hopes Dreams and Fears by Derek Anderson
  • Read online Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley
  • PDF Boundless A Drizzt Novel by R. A. Salvatore
  • PDF Broken by Daylight by Elizabeth Helen
  • 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-12 00:02:45
Previous
Deletes a pet
Built with