My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Say Youll Remember Me by Abby Jimenez
  • Read pdf Meeting Muhammad by Omar Suleiman
  • The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S STUDIO on Ipho
  • PDF Stranded for the Holidays by Lisa Carter
  • Read pdf Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan
  • Online Read Ebook Monstrilio by Gerardo Sámano Córdova
  • PDF Kindle Sinophagia A Celebration of Chinese Horror 2024 by Yimei Tangguo Xueting Christine Ni
  • Online Read Ebook Spectacular A Caraval Holiday Novella by Stephanie Garber Rosie Thorns
  • Our Strange Endeavors by Riley Andrews on Iphone New Format
  • PDF DOWNLOAD Beta Vulgaris A Novel by Margie Sarsfield on Iphone
  • Download Pdf The Last Colony An Old Mans War Novel by John Scalzi
  • DOWNLOAD PDF EPUB Its Hard for Me to Live with Me A Memoir by Rex Chapman Seth Davis
  • Medicinal Lichens Indigenous Wisdom and Modern Pharmacology by Robert Dale Rogers Jason Hollinger o
  • PDF EPUB Download Mrs. S by K Patrick Full Book
  • Wisconsin Wedding by Carla Neggers on Audiobook New
  • Read Pdf 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparaiso
  • DOWNLOADS Erno Rubik and His Magic Cube by Kerry Aradhya Kara Kramer
  • PDF Download Wagner Group - Private Military Company Volume 1 Establishment Purpose Profile and
  • PDF EPUB Download Death Valley Summer by Brandon Wallace Full Book
  • Download Pdf Jojo vs. Middle School by Joy McCullough Veeda Bybee
  • DOWNLOADS The Science of Last Things Essays on Deep Time and the Boundaries of the Self by Ellen Way
  • download pdf The Folly of Realism How the West Deceived Itself About Russia and Betrayed Ukraine by
  • Online Read Ebook Eldritch Escape Tokyo by Fuyu Takizato Romero Takarai Adam Lensenmayer Bradly H
  • Sweet Tooth 100 Desserts to Save Room For A Baking Book by Sarah Fennel on Iphone New Format
  • Download Pdf Klara and the Sun by Kazuo Ishiguro
  • PDF EPUB Download City of Steel by Amber Wiser Thompson Full Book
  • PDF The Social Paradox Autonomy Connection and Why We Need Both to Find Happiness by William von
  • Read Pdf The Immortal by S. R. Finch
  • DOWNLOADS Slöjd The Swedish Art of Wood and Textile Handicrafts by Kerstin Neumüller
  • Getting Lost by Annie Ernaux Alison L. Strayer on Audiobook New
  • Download Pdf Llamame por tu nombre Call Me by Your Name by Andre Aciman
  • Read online Harlequin Presents February 2025 - Box Set 1 of 2 by Lynne Graham Millie Adams Clare C
  • Download Pdf The Mysteries of Pendowar Hall A Victorian Historical Mystery by Syrie James
  • DOWNLOAD PDF EPUB Married. With Children vs. the World The Inside Story of the Shock-Com that Laun
  • Online Read Ebook The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Steve
  • Read pdf Disney Twisted-Wonderland The Official Art Book by Square Enix
  • DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel on Audiobook New
  • 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-06 23:32:55
Previous
Deletes a pet
Built with