My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Lost Journals of Sacajewea A Novel by Debra Magpie Earling Full Book
  • Online Read Ebook Star Wars The Rise and Fall of the Galactic Empire by Chris Kempshall
  • pdf download Sunken Heights by Elias B. Rønnenfelt
  • Dark Nights Death Metal Omnibus by Scott Snyder Greg Capullo Joshua Williamson Xermanico on Audio
  • Crescent Dawn The Rise of the Ottoman Empire and the Making of the Modern Age by Si Sheppard on Ipad
  • PDF DOWNLOAD Keeping His Promise An Uplifting Inspirational Romance by Linda Goodnight on Iphone
  • PDF Kindle The Habitation Society Creating Sustainable Prosperity by Fred Block
  • PDF Vagabondo by Paul Freeman
  • Pdf ePub The Woofmore on Thin Ice The Woofmore 3 by Donna Gephart Lori Haskins Houran Josh Clelan
  • DOWNLOADS The Practical Endgame Bible Guidelines for the Fundamentals of the Endgame by Zlatanovic
  • Disappointing Affirmations by Dave Tarnowski on Ipad
  • pdf download Kingdom of the Cursed by Kerri Maniscalco
  • epub download The Red Emperor Xi Jinping and His New China by Michael Sheridan
  • PDF DOWNLOAD One of Us Is Lying Series Paperback Boxed Set One of Us Is Lying One of Us Is Next On
  • Download PDF Growing Up Farley A Chris Farley Story by Kevin Farley Chris Farley Frank Marraffino
  • PDF Kindle Sun and Steel by Yukio Mishima
  • Download Pdf Powerless Special Edition by Elsie Silver
  • PDF DOWNLOAD Crocheted Bees Bugs Butterflies by Vanessa Mooncie on Iphone
  • Read online The Love Wager by Lynn Painter
  • Download PDF I Survived the Black Death 1348 I Survived 24 by Lauren Tarshis
  • PDF Kindle The Habitation Society Creating Sustainable Prosperity by Fred Block
  • Read online Expiration Dates A Novel by Rebecca Serle
  • Download PDF His Precious Inheritance by Dorothy Clark
  • Read online Along the River of Flesh by Kristopher Triana
  • PDF Download Racing to Extinction Why Humanity Will Soon Vanish by Lyle Lewis
  • PDF Kindle Saint Paul the Pharisee Jewish Apostle to All Nations by Stephen de Young
  • Pdf ePub The Last Hamilton A Novel by Jenn Bregman download ebook
  • Download Pdf Dork Diaries Books 13-15 Boxed Set Dork Diaries 13 Dork Diaries 14 Dork Diaries 15 by R
  • DOWNLOADS Handbook of Children and Screens Digital Media Development and Well-Being from Birth Thr
  • Online Read Ebook If Youll Have Me by Eunnie
  • Read online Creating Your Own Economy A Guide to Financial Freedom and Generous Living by Dave Marti
  • PDF EPUB Download Looking for You A Novel by Alexander McCall Smith Full Book
  • PDF EPUB Download Halfway to Hell by William W. Johnstone J. A. Johnstone Full Book
  • download pdf Song of the Six Realms by Judy I. Lin
  • Say Youll Remember Me by Abby Jimenez on Ipad
  • Read pdf CCNP and CCIE Security Core SCOR 350-701 Official Cert Guide Edition 1 by Omar Santos
  • pdf download The House across the Lake by Riley Sager
  • 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-10 01:37:55
Previous
Deletes a pet
Built with