My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online The Information-Literate Historian A Guide to Research for History Students by Jenny L.
  • Read pdf 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparaiso
  • pdf download The Dark Mirror by Samantha Shannon
  • Pdf ePub Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with Her
  • Boundless A Drizzt Novel by R. A. Salvatore on Ipad
  • PDF My Name Was Eden A Novel by Eleanor Barker-White
  • PDF DOWNLOAD Shangri-La Frontier 14 by Ryosuke Fuji Katarina on Iphone
  • pdf download The Green Witchs Oracle Deck Embrace the Wisdom and Insight of Natural Magic by Arin Mu
  • Read pdf The Paradise Problem by Christina Lauren
  • Read pdf Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki
  • Bride by Ali Hazelwood on Ipad
  • PDF EPUB Download Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R.
  • Online Read Ebook An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • The Disney Villains Cookbook by Disney Books on Audiobook New
  • Online Read Ebook Designing Brand Identity A Comprehensive Guide to the World of Brands and Branding
  • Murder in an Irish Garden by Carlene OConnor on Audiobook New
  • PDF EPUB Download The X-Files Perihelion by Claudia Gray Full Book
  • PDF Download Exquisite Corpse by Poppy Z. Brite
  • PDF DOWNLOAD CCNP Security Cisco Secure Firewall and Intrusion Prevention System Official Cert Gui
  • epub download Street Fighter Swimsuit Special Collection by UDON Various
  • pdf download Nesting A Novel by Roisín ODonnell
  • Read Pdf 50 Projects for Building Your Backyard Homestead Updated Edition A Hands-On Step-By-Ste
  • PDF DOWNLOAD MOON KNIGHT BY JED MACKAY OMNIBUS GREG CAPULLO COVER by Jed MacKay Danny Lore Aless
  • Download PDF The Principles of Product Development Flow Second Generation Lean Product Development b
  • Handbook for Hard Times A monks guide to fearless living by Gelong Thubten on Ipad
  • Read Pdf Foster by Claire Keegan
  • DOWNLOADS Burden of Love by MYA
  • Pdf ePub DK Japan by DK Travel download ebook
  • pdf download Blossom Origami by Clover Robin
  • DOWNLOAD PDF EPUB Me and Other Bunnies by Mo Willems
  • Download Pdf The Quiet Storm A Historical and Cultural Analysis of the Power Passion and Pain of R
  • epub download Impulse Rembrandt Teacher Strategist Bestseller by Jan Nicolaisen Stefan Weppelmann
  • The Psychology of the Armenian Genocide by George Green on Audiobook New
  • House of Crimson Hearts A Steamy Vampire Fantasy Romance by Ruby Roe on Audiobook New
  • Download PDF Hunting the Falcon Henry VIII Anne Boleyn and the Marriage That Shook Europe by John
  • PDF EPUB Download Matzah Day by Charlotte Offsay Jason Kirschner Full Book
  • PDF Download The Vulnerables A Novel by Sigrid Nunez
  • SANCTIFY Volume 3 by GODSSTATION on Iphone New Format
  • Read pdf Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • Pdf ePub Case File Compendium Bing An Ben Novel Vol. 3 by Rou Bao Bu Chi Rou DanKe Boki download
  • DOWNLOAD PDF EPUB Renouncing The Mob by Derek Alan
  • AI Engineering Building Applications with Foundation Models by Chip Huyen on Iphone New Format
  • Read pdf Mother Love Murder in a Small Town by L.R. Wright
  • Read Pdf Arum and King Six Decades of Boxing Gold by Marty Corwin
  • Pdf ePub Christian America and the Kingdom of God White Christian Nationalism from the Puritans thr
  • download pdf The Universal Tactics of Successful Trend Trading Finding Opportunity in Uncertainty b
  • PDF EPUB Download Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan Full Book
  • PDF Yarichin Bitch Club Vol. 5 by Ogeretsu Tanaka
  • DOWNLOAD PDF EPUB Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis
  • download pdf The Art of Sam Yang by Sam Yang 3dtotal Publishing
  • 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
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-14 03:23:25
Previous
Deletes a pet
Built with