My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Creep A Love Story by Emma van Straaten on Iphone New Format
  • PDF EPUB Download The Antique Hunters Death on the Red Sea A Novel by C.L. Miller Full Book
  • Download Pdf Le dedico mi silencio I Give You My Silence by Mario Vargas Llosa
  • Online Read Ebook Clown in a Cornfield by
  • Online Read Ebook Doctor Who Space Babies by Alison Rumfitt
  • Download PDF How Economics Works by DK
  • PDF Kindle The Wolf Who Learned Self-Control by Orianne Lallemand Eleonore Thuillier
  • DOWNLOAD PDF EPUB The Lost Traveler by Sanora Babb
  • PDF EPUB Download The Bad Ones A Novel by Melissa Albert Full Book
  • Download Pdf Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti
  • PDF EPUB Download The Order Kingdom of Fallen Ash by Katerina St Clair Logan St Clair Full Book
  • Bloodfever by Karen Marie Moning on Ipad
  • The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talking About by Mel Robb
  • download pdf The Dragons Bride A Deal With A Demon 1 by Katee Robert
  • PDF The Katharina Code by Jïrn Lier Horst
  • DOWNLOAD PDF EPUB The Exorcism Files True Stories of Demonic Possession by Adam Blai
  • The Artists Drawing Book Learn How to Draw Sketch Shade and More with Easy Lessons and Practice P
  • PDF Kindle The Last Prophet by Mosab Hassan Yousef James Becket
  • DOWNLOAD PDF EPUB Warriors Changing Skies 1 The Elders Quest by Erin Hunter
  • Life in Three Dimensions How Curiosity Exploration and Experience Make a Fuller Better Life by Sh
  • Download Pdf Engineering Graphics with SOLIDWORKS 2022 A Step-by-Step Project Based Approach by Davi
  • Download Pdf Scourge of the Emirates by Peter J. Murray
  • DOWNLOADS Italian Wines 2025 by Gambero Rosso
  • Read pdf Big Name Fan by Ruthie Knox Annie Mare
  • Shipping Out Race Performance and Labor at Sea by Anita Gonzalez on Ipad
  • Pdf ePub AP Computer Science A Premium 12th Edition Prep Book with 6 Practice Tests Comprehensive
  • PDF EPUB Download Royal Scoundrel by Saxon James Full Book
  • Read Pdf Money Lies and God Inside the Movement to Destroy American Democracy by Katherine Stewa
  • Read online Messengers The Guitars of James Hetfield by James Hetfield
  • Online Read Ebook Snowy Day and Other Stories by Lee Chang-dong Yoosup Chang Heinz Insu Fenkl
  • Read pdf The Cowboys Secret and A Rancher to Trust by Jill Kemerer Laurel Blount
  • PDF EPUB Download Onyx Storm by Rebecca Yarros Full Book
  • pdf download Red Dead Redemption 2 The Complete Official Guide Collectors Edition by Piggyback
  • Download Pdf Handbook for the Recently Deceased by Rachael Reed
  • PDF EPUB Download A Ghost of Caribou A Novel of Suspense by Alice Henderson Full Book
  • PDF EPUB Download A Family for Christmas by Irene Brand Dana Corbit Full Book
  • pdf download The Love Wager by Lynn Painter
  • 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-08 02:21:50
Previous
Deletes a pet
Built with