My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Minecraft Annual 2025 by Mojang AB Farshore
  • pdf download Bipolar Not So Much Understanding Your Mood Swings and Depression by Chris Aiken MD J
  • PDF Kindle The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinba
  • PDF The Dukes Only Desire by Anna Harrington
  • PDF Download Easy Learning French Dictionary Trusted support for learning by Collins
  • PDF The body is where it all begins by Marcy Rae Henry
  • PDF EPUB Download We Are the Union How Worker-to-Worker Organizing Is Revitalizing Labor and Winning
  • pdf download No Strings by Cara Lockwood
  • Read Pdf El dique The Levee by Michael McDowell Ph.D
  • Read online Deep Cuts A Novel by Holly Brickley
  • Read pdf Delusions and Grandeur Dreamers of the New West by Mark Sundeen
  • Online Read Ebook Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Alex
  • DOWNLOADS Brimstone Deluxe Limited Edition by Callie Hart
  • PDF EPUB Download Murder in the Tea Leaves by Laura Childs Full Book
  • pdf download Sis Dont Settle How to Stay Smart in Matters of the Heart by Faith Jenkins
  • epub download The Apothecary Diaries Volume 10 Light Novel by Natsu Hyuuga Touko Shino Kevin Stein
  • PDF Download Wild Love by Elsie Silver
  • DC Versus Marvel The Amalgam Age Omnibus by Peter David Dan Jurgens Mark Waid Dave Gibbons Vario
  • Pdf ePub The Will of the Many by James Islington download ebook
  • download pdf The Other Side A Story of Women in Art and the Spirit World by Jennifer Higgie
  • Online Read Ebook Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban
  • Download Pdf Her Holiday Lawman by Ruth Logan Herne Mindy Obenhaus
  • Read online Two Twisted Crowns by Rachel Gillig
  • PDF DOWNLOAD ICD-10-CM 2025 the Complete Official Codebook by American Medical Association on Ipho
  • PDF Yeonnam-Dongs Smiley Laundromat A Novel by Kim Jiyun
  • Download PDF Hell In Search of a Christian Ecology by Timothy Morton
  • Pdf ePub Lines of Courage by Jennifer A. Nielsen download ebook
  • Read Pdf Margaret Fuller Collected Writings LOA 388 by Margaret Fuller Noelle A. Baker Megan Mar
  • How to Piss Off Men 106 Things to Say to Shatter the Male Ego by Kyle Prue on Iphone New Format
  • Download Pdf Man . . . Mercenary . . . Monarch by Joan Elliott Pickart
  • Download PDF New Anatomy for Strength Fitness Training An Illustrated Guide to Your Muscles in Acti
  • PDF Download Pierced Ink by Dani René
  • epub download Infinite Dendrogram Volume 21 Light Novel by Sakon Kaidou Taiki Andrew Hodgson
  • Download PDF Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • PDF DOWNLOAD Laid-Back Camp Vol. 16 by Afro Amber Tamosaitis on Iphone
  • 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-14 00:37:01
Previous
Deletes a pet
Built with