My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf A Bungalow for Two by Carole Gift Page
  • Pdf ePub Disrupting the Game From the Bronx to the Top of Nintendo by Reggie Fils-Aimé download ebo
  • epub download The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Aliza Pre
  • Online Read Ebook The Living Legacy of Trauma Flip Chart A Psychoeducational In-Session Tool for Cli
  • download pdf Treasure of Gor Gorean Saga 38 by John Norman
  • PDF The Experience Machine How Our Minds Predict and Shape Reality by Andy Clark
  • download pdf You Could Do Damage by K.C. Mills
  • Online Read Ebook Twisted by Emily McIntire
  • Pdf ePub The Ashes and the Star-Cursed King by Carissa Broadbent download ebook
  • PDF Kindle Twisted Lies by Ana Huang
  • PDF Download Scarred Collectors Edition by Emily McIntire
  • PDF EPUB Download The Fine Art of Erections by Gruenholtz Full Book
  • PDF DOWNLOAD The Achilles Trap Saddam Hussein the C.I.A. and the Origins of Americas Invasion of
  • PDF Kindle The Psychology of the Armenian Genocide by George Green
  • PDF DOWNLOAD Draw Like a Mangaka The Complete Beginners Guide to Learning to Draw Manga by Marcel
  • Download Pdf The Murder After the Night Before by Katy Brent
  • Read Pdf The Wedding People A Novel by Alison Espach
  • PDF Download Sun Bird The Amazing Journey of the Arctic Tern by Lindsay Moore
  • DOWNLOAD PDF EPUB Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kir
  • PDF EPUB Download Fashion School in a Book Design Illustration for the Beginner and the Brand by
  • Pdf ePub The Dukes Only Desire by Anna Harrington download ebook
  • PDF EPUB Download Turkuaz Kitchen Traditional and Modern Dough Recipes for Sweet and Savory Bakes A
  • PDF EPUB Download Trophies and Scars Ray Evernham by Ray Evernham Joe Garner Jeff Gordon Full Bo
  • Online Read Ebook Escape from the Isle of the Lost by Melissa de la Cruz
  • The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi on Iphone New Fo
  • Scent of Peril A Christian Romantic Suspense by Laura Scott on Ipad
  • download pdf KILL THE DOG The First Book on Screenwriting to Tell You the Truth by Paul Guyot
  • Online Read Ebook The Ex Vows by Jessica Joyce
  • Read pdf Talk The Science of Conversation and the Art of Being Ourselves by Alison Wood Brooks
  • Breasts and Eggs A Novel by Mieko Kawakami Sam Bett David Boyd on Audiobook New
  • PDF EPUB Download Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru Full Bo
  • DOWNLOADS The 5 Love Languages Workbook by Gary Chapman
  • DOWNLOAD PDF EPUB Religion for Realists Why We All Need the Scientific Study of Religion by Samuel
  • Hillbilly Highway The Transappalachian Migration and the Making of a White Working Class by Max Fras
  • Read Pdf A Day at the Post Office by Theonesse Cheon
  • Dear Black Girls How to Be True to You by Aja Wilson on Audiobook New
  • Sins Poison of the Heart by Haifaa Younis on Iphone New Format
  • PDF Kindle People of Means A Novel by Nancy Johnson
  • PDF Kindle Yarrick The Omnibus by David Annandale
  • Pdf ePub Alphabetical Diaries by Sheila Heti download ebook
  • epub download Drawing People 100 Prompts Projects and Playful Exercises by Viktorija Semjonova
  • PDF Download Ask Iwata Words of Wisdom from Satoru Iwata Nintendos Legendary CEO by Sam Bett Hob
  • Read Pdf Something Like Fate A Novel by Amy Lea
  • PDF DOWNLOAD More Tales of Pirx the Pilot by Stanislaw Lem on Iphone
  • PDF Kindle Her Motherhood Wish by Keli Gwyn
  • pdf download Daily Lessons to be studied during the month of Ramadan by Abd-al-aziz Ibn Abdullah Al-
  • Grown Women A Novel by Sarai Johnson on Iphone New Format
  • download pdf When the Earth Was Green Plants Animals and Evolutions Greatest Romance by Riley Bla
  • Read pdf Hell Mode Vol. 7 The Hardcore Gamer Dominates in Another World with Garbage Balancing by
  • download pdf The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Stein
  • 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-16 02:02:30
Previous
Deletes a pet
Built with