My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Summer in the City by Alex Aster
  • download pdf Sins Poison of the Heart by Haifaa Younis
  • Online Read Ebook Cornbread Milk by Jamal Tylor
  • Read pdf Scout Camp Sex Death and Secret Societies Inside the Boy Scouts of America by James Ren
  • Klara and the Sun by Kazuo Ishiguro on Audiobook New
  • DOWNLOADS The Devil and Mrs. Davenport A Novel by Paulette Kennedy
  • PDF EPUB Download Lasso Her Heart and Mistletoe Reunion by Anna Schmidt Full Book
  • PDF EPUB Download Little Vic and the Great Mafia War by Larry McShane Full Book
  • Download Pdf Dream State A Novel by Eric Puchner
  • PDF Kindle Finding Her Way by Marta Perry
  • Pdf ePub Theres No Freaking Way Ill be Your Lover Unless... Manga Vol. 2 by Teren Mikami Musshu E
  • Read pdf The Art of Final Fantasy XVI by Square Enix
  • Download Pdf Dragon Hoops by Gene Luen Yang
  • epub download The Wager A Tale of Shipwreck Mutiny and Murder 2023 BN Author of the Year by David G
  • PDF EPUB Download Ajin Demi-Human Complete 2 by Gamon Sakurai Full Book
  • PDF Kindle Hungerstone by Kat Dunn
  • PDF EPUB Download Valiant Vel Vel Phillips and the Fight for Fairness and Equality by Jerrianne Ha
  • Read Pdf Platform Engineering A Guide for Technical Product and People Leaders by Camille Fourni
  • download pdf Shes Just Like Me by Jamika Banks
  • Pdf ePub World of Warcraft Exploring Azeroth Northrend Exploring Azeroth 3 by Alex Acks download e
  • PDF Download Winning Over the Wrangler Falling for the Rancher Father by Linda Ford
  • DOWNLOADS The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi
  • Read Pdf Gertrude Abercrombie The Whole World Is a Mystery by Gertrude Abercrombie Eric Crosby S
  • Read online Skys End by Marc J Gregson
  • PDF EPUB Download The 5 Resets Rewire Your Brain and Body for Less Stress and More Resilience by A
  • Online Read Ebook Kill for Me Kill for You A Novel by Steve Cavanagh
  • Download Pdf Dreamers Nightmare The Dragon Prince Graphic Novel 4 by Nicole Andelfinger Felia Hanak
  • Read online The Researchers First Murder A New Cains Jawbone Puzzle by John Finnemore
  • Online Read Ebook Wandering Stars by Tommy Orange
  • epub download Second Sister A Novel by Chan Ho-Kei Jeremy Tiang
  • Read pdf The Seven Husbands of Evelyn Hugo A Novel by Taylor Jenkins Reid
  • PDF EPUB Download A Knock at the Door A homeless man a lawyer . . . and a family changed forever by
  • Online Read Ebook Beginners Guide to SOLIDWORKS 2022 - Level II Sheet Metal Top Down Design Weldme
  • Read online Omniscient Readers Viewpoint Vol. 2 by Sleepy-C UMI Hye Young Im J. Torres
  • Download PDF Matty Matheson Soups Salads Sandwiches A Cookbook by Matty Matheson
  • Essentials Vol. 1 Bill Sienkiewicz Premiere Edition by Luke Arnold Chris Doc Wyatt on Ipad
  • download pdf Hacia cero Novela policiaca y de misterio Towards Zero A Mystery and Detective Novel
  • Read online The House of Awadh A Hidden Tragedy by Aletta André Abhimanyu Kumar
  • PDF Kindle An Anthology of Aquatic Life by Sam Hume
  • PDF Kindle Foolish Puckboy by Eden Finley Saxon James
  • PDF EPUB Download Binding 13 by Chloe Walsh Full Book
  • Game Theory Understanding the Mathematics of Life by Brian Clegg on Ipad
  • pdf download Black Pill How I Witnessed the Darkest Corners of the Internet Come to Life Poison Soc
  • Its Not Easy Being a Leprechaun by Marilyn Sadler Stephanie Laberis on Audiobook New
  • download pdf Blood and Oil Mohammed bin Salmans Ruthless Quest for Global Power by Bradley Hope Ju
  • PDF EPUB Download Brother Brontë A Novel by Fernando A. Flores Full Book
  • PDF DOWNLOAD Clinical Atlas of Musculoskeletal Ultrasound in Rheumatology by Janeth Yinh Eugene K
  • download pdf Yakuza Fiancé Raise wa Tanin ga Ii Vol. 4 by Asuka Konishi
  • Read online Cryptids Creatures Critters A Manual of Monsters Mythos from Around the World by Rach
  • epub download Body Parts A Serial Killers Deadly Compulsions by Caitlin Rother
  • 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-09 22:47:45
Previous
Deletes a pet
Built with