My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Philip and Alexander Kings and Conquerors by Adrian Goldsworthy
  • Big Vegan Flavor Techniques and 150 Recipes to Master Vegan Cooking by Nisha Vora on Iphone New Form
  • Read online CCNP Security Virtual Private Networks SVPN 300-730 Official Cert Guide by
  • La rosa de Hereford by Brenna Watson on Ipad
  • DOWNLOAD PDF EPUB Dogs and Monsters Stories by Mark Haddon
  • PDF EPUB Download Geiger Volume 2 The Nuclear Knight by Geoff Johns Gary Frank Brad Anderson Full
  • Quarrys Return Quarry by Max Allan Collins on Ipad
  • Food Scarcity and Power in Southeastern Europe during the Second World War by Paolo Fonzi Sabine R
  • Crumble A Graphic Novel by Meredith McClaren Andrea Bell on Ipad
  • epub download Designing Terry Pratchetts Discworld by Paul Kidby
  • Read Pdf Royal Scoundrel by Saxon James
  • DOWNLOAD PDF EPUB A Family for Christmas by Irene Brand Dana Corbit
  • PDF DOWNLOAD Anxiously Attached Becoming More Secure in Life and Love by Jessica Baum on Iphone
  • PDF The Darkest White A Mountain Legend and the Avalanche That Took Him by Eric Blehm
  • Conclave by Robert Harris on Ipad
  • DOWNLOADS The Parent Plan Part 2 by Paula Detmer Riggs
  • pdf download Courting Holly by Lynn A. Coleman
  • Read pdf Nydia Blas Love You Came from Greatness by Nydia Blas Catherine Taylor Nicholas Muellne
  • DOWNLOADS Ottolenghi Comfort Alternate Cover Edition A Cookbook by Yotam Ottolenghi Helen Goh
  • PDF Kindle DC Versus Marvel The Amalgam Age Omnibus by Peter David Dan Jurgens Mark Waid Dave Gi
  • epub download The Lotus Shoes A Novel by Jane Yang
  • To Slip the Bonds of Earth A Riveting Mystery Based on a True History by Amanda Flower on Iphone New
  • DOWNLOADS Lenswoman in Love a novel of the 1960s 70s by Kim R Gottlieb Walker
  • epub download Graphic Artists Guild Handbook 16th Edition Pricing Ethical Guidelines by The Graphi
  • Learning Kali Linux Security Testing Penetration Testing Ethical Hacking by Ric Messier on Iphone
  • PDF EPUB Download Street Fighter Swimsuit Special Collection by UDON Various Full Book
  • Download PDF Zodiac Academy 2 Ruthless Fae by Caroline Peckham Susanne Valenti
  • Online Read Ebook I May Be a Guild Receptionist but Ill Solo Any Boss to Clock Out on Time Vol. 4
  • PDF Download Dungeons Dragons Worlds Realms Adventures from Greyhawk to Faerûn and Beyond by Ada
  • The Unraveling of Emlyn Dulaine Volume 1 by Lindsay A Franklin on Audiobook New
  • DOWNLOADS Logos that Last How to Create Iconic Visual Branding by Allan Peters
  • epub download Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Susann
  • Read Pdf La jugada final The Final Gambit by Jennifer Lynn Barnes
  • Thrum by Meg Smitherman on Audiobook New
  • Online Read Ebook Cybernova by Hunter Whitlow
  • 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-14 23:28:01
Previous
Deletes a pet
Built with