My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Alpengluhn by Stefan Soell
  • Daybreak A Novel by Matt Gallagher on Ipad
  • Download PDF Chalk Wars Pommel Clock and the Incredulous Cost of Integrity by Patrick Sinclair
  • Download PDF Through You by Ariana Godoy
  • PDF The Garden by Nick Newman
  • Read pdf Black Girls and How We Fail Them by Aria S. Halliday
  • PDF Kindle Lets Be Bees by Shawn Harris
  • Online Read Ebook Quicksilver by Callie Hart
  • Read Pdf Dream of the Bird Tattoo Poems and Sueï½itos by Juan J Morales
  • Pdf ePub The Chromatic Fantasy by H.A. download ebook
  • Lost in Taiwan A Graphic Novel by Mark Crilley on Audiobook New
  • download pdf Throne of the Fallen by Kerri Maniscalco
  • PDF DOWNLOAD Dont Eat the Cleaners Tiny Fish with a Big Job by Susan Stockdale on Iphone
  • PDF The Starlight Heir A Novel by Amalie Howard
  • download pdf Right-Wing Women by Andrea Dworkin Moira Donegan
  • Reign of the Seven Spellblades Vol. 8 manga by Bokuto Uno Sakae Esuno Ruria Miyuki Andrew Cunnin
  • epub download Pokémon Scarlet Violet Vol. 1 by Hidenori Kusaka Satoshi Yamamoto
  • Download PDF THE CAT Clinical Medicine and Management by Susan E. Little DVM DABVP
  • PDF EPUB Download Scent of Peril A Christian Romantic Suspense by Laura Scott Full Book
  • The Legend of Zelda Tears of the Kingdom - The Complete Official Guide Standard Edition by Piggyback
  • DOWNLOAD PDF EPUB Toiveiden lapset by Danielle Steel Kaisa Luntinen
  • DOWNLOADS Thriving Together Nine Principles for Cocreating True Community by David Viafora Sister T
  • DOWNLOAD PDF EPUB Murder in an Irish Garden by Carlene OConnor
  • Download Pdf Tracking the Truth by Sarah Varland Sharee Stover
  • PDF EPUB Download Styles of Joy A Feel-Good Framework for Rediscovering Joy with a Twist by SC Perot
  • Pdf ePub Entrances and Exits by Michael Richards Jerry Seinfeld download ebook
  • PDF Princeton Review AP Statistics Prep 20th Edition 5 Practice Tests Complete Content Review St
  • PDF Download An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • PDF DOWNLOAD Average Joe The Memoirs of a Blue-Collar Entertainer by Joe Piscopo Walter Scott Lam
  • download pdf The Most Heretical Last Boss Queen From Villainess to Savior Light Novel Vol. 6 by Ten
  • PDF Kindle Something Good by Kenneth Kraegel
  • DOWNLOADS Before the Tavern 100 Character Concepts for Tabletop Role-Playing Games by Gus Rachels A
  • Read Pdf What Moves the Dead by T. Kingfisher
  • PDF Download Story of Taylor Swift by Lindsey Sagar
  • PDF Kindle Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • PDF EPUB Download Danes Mark by Lora Leigh Full Book
  • Hillbilly Elegy A Memoir of a Family and Culture in Crisis by J. D. Vance on Audiobook New
  • Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban on Iphone New Format
  • The Land of the Living A Novel by Timothy Crellin on Ipad
  • Theres Treasure Inside by Jon Collins-Black on Ipad
  • Read Pdf Sip with Tea by LaTasha Hunt
  • One Night with the Best Man by Amanda Berry on Audiobook New
  • PDF Kindle Into the Void From Birth to Black Sabbath - And Beyond by Geezer Butler
  • PDF EPUB Download Machine Learning From the Classics to Deep Networks Transformers and Diffusion M
  • The Stormlight Archive Books 1-3 The Way of Kings Words of Radiance Oathbringer by Brandon Sander
  • Download Pdf Strange Pictures A Novel by Uketsu Jim Rion
  • Read Pdf Meet Me in Milan by Sophie Gravia
  • Download Pdf The Winner by C.J. Parsons
  • Read Pdf 100 Essential Tips to Master No-Limit Holdem by Jonathan Little
  • DOWNLOAD PDF EPUB Wake Up and Open Your Eyes by Clay Chapman
  • 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-12 21:28:15
Previous
Deletes a pet
Built with