My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook Diary of an 8-Bit Warrior Graphic Novel Journey to the Far Lands by Pirate Sourcil
  • PDF DOWNLOAD Formula 2 The glory years 1967-84 by Jutta Fausel Chris Witty Jacky Ickx on Iphone
  • DOWNLOADS The Violent Take It by Force The Christian Movement That Is Threatening Our Democracy by M
  • pdf download Heroes Feast The Deck of Many Morsels 50 Cards for Conjuring Snacks Libations and Swe
  • PDF Great Big Beautiful Life by Emily Henry
  • The Hurricane Girls by Kimberly Willis Holt on Iphone New Format
  • Pdf ePub Cant Get Enough by Kennedy Ryan download ebook
  • Read Pdf Proud Flesh A Memoir of Motherhood Intimate Violence and Reclaiming Pleasure by Catheri
  • PDF EPUB Download All the Parts We Exile by Roza Nozari Full Book
  • PDF EPUB Download Star Wars The Rise and Fall of the Galactic Empire by Chris Kempshall Full Book
  • Read pdf Fairy Tale Tarot by Lisa Hunt
  • pdf download Ill Become a Villainess Who Goes Down in History Vol. 1 novel by Izumi Okido Jyun Hay
  • Christianity Simplified by Steven P. Bischof on Ipad
  • pdf download USMLE Step 2 CK Lecture Notes 2024-2025 5-Book Clinical Review by Kaplan Medical
  • epub download The Hunting Moon by Susan Dennard
  • Read Pdf Sweet Babe A Jewish Grandma Kvells by Robin Rosenthal
  • Download PDF Aftermarket Afterlife by Seanan McGuire
  • Online Read Ebook The Art of Mac Malware Volume 2 Detecting Malicious Software by Patrick Wardle
  • DOWNLOAD PDF EPUB Plain Secrets by Kit Wilkinson
  • DOWNLOAD PDF EPUB The Habitation Society Creating Sustainable Prosperity by Fred Block
  • PDF The Hunger Habit Why We Eat When Were Not Hungry and How to Stop by Judson Brewer
  • Read Pdf In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles
  • Download Pdf Marry Me Mackenzie by Joanna Sims
  • download pdf Itchy Tasty An Unofficial History of Resident Evil An Unofficial History of Resident
  • Read pdf The Penguin Vol 2 All Bad Things by Tom King Rafael De Latorre
  • DOWNLOAD PDF EPUB Montana Wrangler by Charlotte Carter
  • PDF Kindle Heaven Officials Blessing Tian Guan Ci Fu Novel Vol. 8 Special Edition by Mo Xiang Tong
  • PDF DOWNLOAD The Last Road Trip by Jennifer Klepper on Iphone
  • Read pdf Say Youll Remember Me by Abby Jimenez
  • pdf download Relinquished Realms by Joaquïn Baldwin
  • PDF EPUB Download Theory Practice A Novel by Michelle de Kretser Full Book
  • pdf download The Crash by Kate Furnivall
  • Download Pdf We Are the Union How Worker-to-Worker Organizing Is Revitalizing Labor and Winning Big
  • Read online Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Kend
  • download pdf Hunting the Falcon Henry VIII Anne Boleyn and the Marriage That Shook Europe by John
  • download pdf Feigin and Cherrys Textbook of Pediatric Infectious Diseases 2-Volume Set by James Che
  • Las indignas The Unworthy by Agustina Bazterrica on Ipad
  • Frontier Agreement by Shannon Farrington on Iphone New Format
  • 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
Previous
Deletes a pet
Built with