My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf The Art of Michael Fell by Andrew Wilton
  • PDF Anne Has an Alligator by Margaret Bain Cameron Bain
  • Read online The Very Hungry Caterpillars Animal Colors by Eric Carle
  • pdf download Twisted by Emily McIntire
  • PDF DOWNLOAD Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • Read Pdf Conclave by Robert Harris
  • PDF EPUB Download El Pozo de la Ascensión Nacidos de la Bruma-Mistborn edición ilustrada 2 by Bran
  • DOWNLOADS Whotopia The Ultimate Guide to the Whoniverse by Jonathan Morris Simon Guerrier Una McCo
  • PDF Kindle Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley
  • Read Pdf Mockingjay by Suzanne Collins
  • Read online Christmas Cover-Up by Lynette Eason
  • PDF In the Name of Honor by Courtney Collins Clarke Collins
  • El Pozo de la Ascensión Nacidos de la Bruma-Mistborn edición ilustrada 2 by Brandon Sanderson Raf
  • PDF Kindle The Lords of Easy Money How the Federal Reserve Broke the American Economy by Christophe
  • Black Girls and How We Fail Them by Aria S. Halliday on Iphone New Format
  • DOWNLOADS El gato que venía del cielo The Guest Cat by Takashi Hiraide
  • PDF Kindle Feeding Tiny Bellies Over 100 Baby-Led Weaning Toddler and Family Recipes A Cookbook b
  • PDF Black Wolf A Novel by Juan Gómez-Jurado
  • PDF EPUB Download Something Good by Kenneth Kraegel Full Book
  • PDF EPUB Download The Hunting Moon by Susan Dennard Full Book
  • PDF Kindle The LEGO MINDSTORMS Robot Inventor Idea Book by Yoshihito Isogawa
  • Online Read Ebook Midnight Black by Mark Greaney
  • PDF Download The New Brazilian Mediascape Television Production in the Digital Streaming Age by El
  • epub download A Kiss of Iron by Clare Sager
  • DOWNLOADS Infinity Alchemist by Kacen Callender
  • DOWNLOADS The Green Witchs Oracle Deck Embrace the Wisdom and Insight of Natural Magic by Arin Murph
  • PDF DOWNLOAD Racing the Clouds by Sydney Dunlap on Iphone
  • DOWNLOADS A Night in the Lonesome October A Novel by Roger Zelazny
  • Read Pdf Neighbor by Lisa Gardner
  • PDF EPUB Download The Last American Heiresses by Stephen Greco Full Book
  • Online Read Ebook Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • PDF Kindle Flowers In The Rain The Untold Story of The Move by Jim McCarthy
  • PDF Download The Art of Architectural Grafting by Jeanne Gang
  • pdf download Junie A GMA Book Club Pick A Novel by Erin Crosby Eckstine
  • Dirty Diana A Novel by Jen Besser Shana Feste on Ipad
  • The art of darkness The history of goth by John Robb on Audiobook New
  • PDF Retreat A Novel by Krysten Ritter
  • epub download THE STAR SEEKERS Vol. 6 comic by HYBE TOMORROW X TOMORROW X TOGETHER
  • 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-13 01:07:45
Previous
Deletes a pet
Built with