My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Artists Guide to Sketching The Classic Book about Making Art on Location by James Gurney Thomas
  • PDF Download Breaking Bao 88 Bakes and Snacks from Asia and Beyond by Clarice Lam Evan Sung
  • Dare I Say It Everything I Wish Id Known About Menopause by Naomi Watts Mary Claire Haver MD on Iph
  • Read pdf The Tower A Novel by Flora Carr
  • Remembering Peasants A Personal History of a Vanished World by Patrick Joyce on Iphone New Format
  • DOWNLOADS Nuestra desquiciada historia de amor by Jandy Nelson
  • Download PDF Thrum by Meg Smitherman
  • Download PDF The Fine Art of Erections by Gruenholtz
  • Duty to Protect by Lisa Phillips Carol J. Post on Iphone New Format
  • PDF EPUB Download The Promise She Made An utterly heartbreaking and gripping World War 2 historica
  • Online Read Ebook Peerless Novel Vol. 2 by Meng Xi Shi
  • epub download A Night in the Lonesome October A Novel by Roger Zelazny
  • Read pdf Journey of Hope by Debbie Kaufman
  • Download PDF Yarichin Bitch Club Vol. 4 by
  • PDF DOWNLOAD The Glassmaker A Novel by Tracy Chevalier on Iphone
  • Read pdf The Official Agatha Christie Puzzle Book Put your detective skills to the ultimate test b
  • PDF Download Binding 13 by Chloe Walsh
  • Read Pdf Power and Terror Conflict Hegemony and the Rule of Force by Noam Chomsky John Junkerma
  • Caging Skies A Novel by Christine Leunens on Iphone New Format
  • Read Pdf The Complete Aaron Sans Erotica Collection Volumes 1-7 66 Stories about MILFs Gangbangs
  • Pharaoh Art and Power in Ancient Egypt by Marie Vandenbeusch on Iphone New Format
  • Milk White Steed by Michael Kennedy on Audiobook New
  • Online Read Ebook The New Romantic Garden by Jo Thompson
  • download pdf The Trap by David Icke
  • Download PDF Stereophonic by David Adjmi Will Butler
  • download pdf Architecture Form Space and Order Edition 4 by Francis D. K. Ching
  • PDF EPUB Download Deeper Mindfulness The New Way to Rediscover Calm in a Chaotic World by Mark Willi
  • PDF EPUB Download Right-Wing Women by Andrea Dworkin Moira Donegan Full Book
  • Cat of Many Tails by Ellery Queen Richard Dannay on Audiobook New
  • Download Pdf You Have Not Yet Heard Your Favourite Song How Streaming Changes Music by Glenn McDonal
  • epub download My Half Latinx Kitchen Half Recipes Half Stories All Latin American by Kiera Wright-
  • Drawing Basics and Beyond Transform Observation into Imagination by Sorie Kim on Audiobook New
  • Pdf ePub Tarnished by Erica Rose Eberhart download ebook
  • PDF DOWNLOAD Michael Vey 8 The Parasite by Richard Paul Evans on Iphone
  • DOWNLOADS Philosophy and Life Exploring the Great Questions of How to Live by A. C. Grayling
  • A Bungalow for Two by Carole Gift Page on Iphone New Format
  • epub download One-Night Crush by Mia Heintzelman
  • 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-11 23:15:10
Previous
Deletes a pet
Built with