My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Shot in the Back by William W. Johnstone J. A. Johnstone
  • Read online Open When A Companion for Lifes Twists Turns by Julie Smith
  • Fiancée No More The Forsaken Lady the Prince and Their Make-Believe Love Volume 3 by Mari Morikawa
  • PDF Crescent Dawn The Rise of the Ottoman Empire and the Making of the Modern Age by Si Sheppard
  • DOWNLOADS Brave New World A Graphic Novel by Aldous Huxley Fred Fordham
  • PDF DOWNLOAD The Hebridean Baker The Scottish Cookbook by Coinneach MacLeod on Iphone
  • Draw Like an Artist 100 Lessons to Create Anime and Manga Characters Step-by-Step Line Drawing - A S
  • Read online The Paris Apartment by Lucy Foley
  • PDF EPUB Download Conclave by Robert Harris Full Book
  • PDF Download Captive in the Dark Book One of The Dark Duet by Cj Roberts Addyson Joy
  • Read pdf Whats Your Favorite Color by Eric Carle
  • epub download Just Ask Spirit Free Your Emotions to Energize Intuition and Discover Purpose by Sheri
  • Read online Nothing Serious A Novel by Emily J. Smith
  • PDF DOWNLOAD Woodpecker Method 2 by Axel Smith on Iphone
  • DOWNLOADS Machine Learning Q and AI 30 Essential Questions and Answers on Machine Learning and AI by
  • Download Pdf The Marshal Takes a Bride Second Chance Bride by Renee Ryan Jane Myers Perrine
  • Read pdf Reign of the Seven Spellblades Vol. 8 manga by Bokuto Uno Sakae Esuno Ruria Miyuki An
  • Download Pdf Renouncing The Mob by Derek Alan
  • DOWNLOADS Fantastic Four The Ultimate Guide The Ultimate Guide to Marvels Original Superhero Family
  • PDF Download Monsieur Pain by Roberto Bolaño Chris Andrews
  • PDF DOWNLOAD The Marquess Next Door A Steamy Historical Romance Book by Virginia Heath on Iphone
  • Read pdf Normal Women Making history for 900 years by Philippa Gregory
  • Download Pdf Pack of Her Own by Elena Abbott
  • Read Pdf Frank Millers Ronin Rising Collectors Edition by Frank Miller Philip Tan Daniel Henriqu
  • Read online Never Flinch A Novel by Stephen King
  • DOWNLOADS Acts of Murder Murder in a Small Town by L.R. Wright
  • PDF DOWNLOAD Mary Shelleys Frankenstein Starring Boris Karloff by Mary Shelley Kerry Gammill El
  • PDF DOWNLOAD Wars of Suns and Shadows by Scarlett Larsson on Iphone
  • Read pdf How to Be a Childrens Book Illustrator A Guide to Visual Storytelling by Publishing 3dtot
  • Download PDF Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Susanna
  • Betas Alpha Daughter by K. L. Roulo on Audiobook New
  • DOWNLOADS The Dare by Natasha Preston
  • DOWNLOADS Lonely Planet Malta Gozo by Brett Atkinson
  • Read pdf Un año con Dios al amanecer 365 devocionales para vivir el Padre Nuestro Awak e in the
  • DOWNLOADS The Prison Healer by Lynette Noni
  • download pdf Marvel Comics Library. Avengers. 1963-1965 by Kurt Busiek Jack Kirby Stan Lee
  • PDF DOWNLOAD The One and Only Family by Katherine Applegate on Iphone
  • Read Pdf Mythic Plants Potions and Poisons from the Gardens of the Gods by Ellen Zachos
  • PDF DOWNLOAD Tales Of Space And TimeIllustrated by H. G. Wells Micheal Smith on Iphone
  • Download PDF A Bungalow for Two by Carole Gift Page
  • DOWNLOADS The Chess Deck 50 Cards for Mastering the Basics by Levy Rozman
  • Download Pdf Bucks Step-by-Step Medical Coding 2025 Edition by Elsevier Inc Elsevier Jackie Koest
  • epub download Rose in Chains Deluxe Limited Edition by Julie Soto
  • epub download Mighty Morphin Power Rangers The Eltarian War by Ryan Parrott Francesco Mortarino
  • Read pdf The Shadows Between Us by Tricia Levenseller
  • PDF Kindle Meredith Alone by Claire Alexander
  • Download Pdf World Builders Technology and the New Geopolitics by Bruno Maïïes
  • Brandon Sandersons White Sand Omnibus by Brandon Sanderson Rik Hoskin Isaac Stewart Julius M Gope
  • PDF Kindle A Day at the Post Office by Theonesse Cheon
  • Pdf ePub The Bones Beneath My Skin by TJ Klune download ebook
  • 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-07 23:12:35
Previous
Deletes a pet
Built with