My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Fence Vol. 1 by C.S. Pacat Johanna the Mad Rebecca Nalty on Iphone
  • DOWNLOAD PDF EPUB Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Al
  • download pdf Cultural Intelligence for Marketers Building an Inclusive Marketing Strategy by Anasta
  • Drawing Deena by Hena Khan on Audiobook New
  • Read pdf The Music of the How to Train Your Dragon Trilogy A Guide to the Scores of John Powell by
  • DOWNLOAD PDF EPUB DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • Read online Quicksilver by Callie Hart
  • Download PDF Gravewater Lake A Thriller by A.M. Strong Sonya Sargent
  • The Hunger Habit Why We Eat When Were Not Hungry and How to Stop by Judson Brewer on Audiobook New
  • DOWNLOAD PDF EPUB The Brothers Karamazov A New Translation by Michael R. Katz by Fyodor Dostoevsky
  • City of Gods and Monsters by Kayla Edwards on Iphone New Format
  • PDF Kindle Descendants Fright at the Museum by Delilah S. Dawson Anna Cattish Elizaveta Shokareva
  • PDF Download The Vexations of a Shut-In Vampire Princess Vol. 8 light novel by Kotei Kobayashi r
  • DOWNLOADS Caídos del cielo 60 aniversario de Alfaguara Fallen from the Sky by Ray Loriga
  • Read pdf Protecting the Pack by Julie Miller
  • DOWNLOADS Mickey7 A Novel by Edward Ashton
  • pdf download Narrative of the Life of Frederick Douglass by Frederick Douglass
  • Online Read Ebook The Amish Marriage Bargain and Finding Her Amish Love by Marie E. Bast Rebecca Ke
  • pdf download Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with H
  • PDF DOWNLOAD Kinda Korean Stories from an American Life by Joan Sung on Iphone
  • Heartland Courtship and Homefront Hero by Lyn Cote Allie Pleiter on Audiobook New
  • Pdf ePub Lovemaking How to Talk about Sex with Your Spouse by Renzo Ortega Monica Ortega Emily St
  • DOWNLOAD PDF EPUB New York Times Games Crossword Clever for the Consistent Solver 200 Medium Cross
  • download pdf The War of the Worlds by H. G. Wells
  • Read pdf The Dukes Only Desire by Anna Harrington
  • PDF Kindle The Lady Knight and the Beast-Eared Child Vol. 2 by Taboengine
  • Online Read Ebook The Last Great Acts of Saint Peter Re-enacted from Ancient Writings by Edward N. B
  • PDF Download Spheres by V. Angelo
  • Read pdf Its Me Two Catwad 2 by Jim Benton
  • Read pdf Catching a Hacker by Maggie Wells
  • PDF DOWNLOAD Whos Afraid of Gender by Judith Butler on Iphone
  • PDF Download Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Deb
  • Online Read Ebook Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Su
  • PDF Kindle Woman of Wolves by Jess McFarlane
  • Read Pdf Disappointing Affirmations Sticker Book 100 Stickers to Stick Wherever by Dave Tarnowski
  • Read Pdf Julia A Retelling of George Orwells 1984 by Sandra Newman
  • Un año con Dios al amanecer 365 devocionales para vivir el Padre Nuestro Awak e in the Dawn a 365
  • PDF Kindle Bear Bottom by Stuart Gibbs
  • PDF Kindle Killing Me Soufflé A Bakeshop Mystery by Ellie Alexander
  • epub download Unhumans The Secret History of Communist Revolutions and How to Crush Them by Jack Pos
  • DOWNLOADS Strange Pictures A Novel by Uketsu Jim Rion
  • Pdf ePub Hard by a Great Forest A Novel by Leo Vardiashvili download ebook
  • DOWNLOAD PDF EPUB Internal Family Systems Therapy Second Edition by Richard C. Schwartz PhD Mart
  • Download Pdf Grillos Presents Pickled 100 Pickle-centric Recipes to Change Your Life by Grillos Pick
  • Read online Buffy the Vampire Slayer Tiny Tarot Deck and Guidebook by Casey Gilly Karl James Mountf
  • PDF DOWNLOAD SECRET WARS BATTLEWORLD OMNIBUS VOL. 1 JIM CHEUNG COVER by Marvel Various on Iphone
  • DOWNLOAD PDF EPUB Cosas que ocultamos de la luz by Lucy Score
  • Download PDF Remembering Peasants A Personal History of a Vanished World by Patrick Joyce
  • Download PDF Sumud A New Palestinian Reader by Malu Halasa Jordan Elgrably
  • Download PDF Dracula Signature Classics by Bram Stoker
  • 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 21:47:55
Previous
Deletes a pet
Built with