My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Zodiac Almanac An Everything Guide to the 12 Astrological Signs by Various Authors dow
  • PDF EPUB Download At the Wolfs Table by Rosella Postorino Leah Janeczko Full Book
  • PDF EPUB Download The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Steve
  • Pdf ePub Cross Down An Alex Cross and John Sampson Thriller by James Patterson Brendan DuBois down
  • download pdf The Hobbit Deluxe Illustrated by the Author Special Edition by J. R. R. Tolkien
  • PDF Download Faefever by Karen Marie Moning
  • DOWNLOADS Oshi No Ko Vol. 9 by Aka Akasaka Mengo Yokoyari Taylor Engel
  • Download Pdf The New Generation Crips and Folk Nation Bible The Inner Secrets of Knowledge Wisdom
  • PDF Kindle Jardín de las delicias El by José Luis de Villar Iglesias
  • Magical Love A Romantasy Coloring Book Ethereal Romantic Fantasy Scenes to Color by Echo Chernik on
  • DOWNLOAD PDF EPUB A Rovers Story by Jasmine Warga
  • download pdf Aim to Misbehave Firefly by Rosiee Thor
  • Download Pdf Creature Girls A Hands-On Field Journal in Another World Vol. 10 by Kakeru
  • Download Pdf The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings
  • download pdf A Curse Carved in Bone Book Two of the Saga of the Unfated by Danielle L. Jensen
  • DOWNLOAD PDF EPUB Not Stolen The Truth About European Colonialism in the New World by Jeff Fynn-Pa
  • DOWNLOAD PDF EPUB The Secret History of Audrey James A Novel by Heather Marshall
  • Download PDF Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School S
  • Read online The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • Read pdf Bellas Journey by Victoria A Farias Lucia Benito
  • pdf download Percy Jackson and the Olympians The Official Cookbook by Jarrett Melendez
  • Pdf ePub A Fly on the Wall by Kalman Stein download ebook
  • Magnolia Parks. Escoge el camino largo Magnolia Parks The Long Way Home by Jessa Hastings on Iphon
  • Online Read Ebook Ayurveda Mama A Comprehensive Guide to Preparing for Pregnancy Birth and Postpar
  • PDF Download Catch the Sun by Jennifer Hartmann
  • PDF EPUB Download Strangers Among Us Murder in a Small Town by L.R. Wright Full Book
  • Read Pdf The Husky and His White Cat Shizun Erha He Ta De Bai Mao Shizun Novel Vol. 6 by Rou Bao B
  • epub download Worthy How to Believe You Are Enough and Transform Your Life by Jamie Kern Lima
  • Download PDF Want Sexual Fantasies by Anonymous by Gillian Anderson
  • Read Pdf Boy A Novel by Nicole Galland
  • PDF EPUB Download Nintendo and Illumination present The Super Mario Bros. Movie Official Storybook b
  • Download Pdf Wilderness Hostage by Janice Kay Johnson
  • Pdf ePub VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu download ebook
  • Download Pdf Other Rivers A Chinese Education by Peter Hessler
  • epub download The Only Thing Id Do in a No-Boys-Allowed Game World Vol. 1 novel Reincarnated as a Y
  • PDF The Age of Insecurity Coming Together as Things Fall Apart by Astra Taylor
  • Read Pdf Even a Replica Can Fall in Love Vol. 2 by Harunadon Andrew Cunningham raemz
  • DOWNLOAD PDF EPUB Rooster Fighter Vol. 7 by Shu Sakuratani
  • 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-06 12:52:05
Previous
Deletes a pet
Built with