My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Dick Tracy Valentines Day Special by Alex Segura Michael Moreci Craig Cermak
  • PDF Dynamic Character Design Draw faces and figures with pencil markers digital tools and more b
  • PDF Download Adaptive Rifle For Performance Shooting by Ben Stoeger Joel Park Lucas Batkin
  • PDF Download A Murder Most French by Colleen Cambridge
  • Pdf ePub Sports Card Collecting Investing For Dummies by Geoff Wilson Ben Burrows Tyler Netherco
  • PDF EPUB Download A Christmas Carol by Charles Dickens John Leech Full Book
  • Download PDF Strange Pictures A Novel by Uketsu Jim Rion
  • PDF EPUB Download The Signless and the Deathless On the Realization of Nirvana by Bhikkhu Analayo
  • epub download Vagabondo by Paul Freeman
  • Online Read Ebook The Knight and the Moth by Rachel Gillig
  • PDF Download Tim Burton Designing Worlds by Tim Burton Maria McLintock Anja Aronowsky Cronberg
  • Download PDF Last Laughs by Elliott Erwitt
  • epub download The Sun and the Star A Nico di Angelo Adventure by Rick Riordan Mark Oshiro
  • Download Pdf Wings of Fire The Official How to Draw by Tui T. Sutherland Brianna C. Walsh
  • Download Pdf Todd Hido Intimate Distance Revised and Expanded Edition Over Thirty Years of Photograp
  • PDF EPUB Download Wellness A novel by Nathan Hill Full Book
  • Pdf ePub Magnolia Parks by Jessa Hastings download ebook
  • PDF EPUB Download Brimstone Deluxe Limited Edition by Callie Hart Full Book
  • Read pdf Serotonin A Novel by Michel Houellebecq Shaun Whiteside
  • Read pdf Great Big Beautiful Life by Emily Henry
  • pdf download Sing Backwards and Weep A Memoir by Mark Lanegan
  • PDF EPUB Download What Is the Bible by Rachel Held Evans Matthew Paul Turner Ying Hui Tan Full B
  • PDF EPUB Download Make Me by Tessa Bailey Full Book
  • PDF EPUB Download Klara and the Sun by Kazuo Ishiguro Full Book
  • Read pdf Cuentos by Dan Henderson
  • Read Pdf Fermented Hot Sauce Cookbook A Step-by-Step Guide to Making Hot Sauce From Scratch by Kri
  • Online Read Ebook iPad for Seniors in easy steps Covers all models with iPad OS 18 by Nick Vandome
  • PDF DOWNLOAD Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola on Iphone
  • Wedding Dashers by Heather McBreen on Iphone New Format
  • Download PDF In Praise of Floods The Untamed River and the Life It Brings by James C. Scott
  • The Prince and the Scribe by Logan Kelly on Iphone New Format
  • PDF DOWNLOAD The Arc The Third Book of The Loop Trilogy by Ben Oliver on Iphone
  • PDF EPUB Download I Am Toph Avatar The Last Airbender by Mei Nakamura Bao Luu Full Book
  • Pdf ePub Wingborn by Marjorie Liu Grace Kum download ebook
  • Online Read Ebook Whole Life Sentence by Lynda La Plante
  • A Fortunes Redemption by Stella Bagwell on Audiobook New
  • 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-11 03:19:55
Previous
Deletes a pet
Built with