My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Way to a Cowboys Heart by Barbara Ankrum Full Book
  • The Game Masters Book of Instant Towns and Cities 160 unique villages towns settlements and cities
  • PDF Tu mundo y el mío. Postales del Antropoceno The Anthropocene Reviewed by John Green
  • Read Pdf Research For People Who Think They Would Rather Create by Dirk Vis Florian Cramer
  • PDF Download The Undead Fox of Deadwood Forest by Aubrey Hartman
  • PDF EPUB Download Every Single Secret by Christina Dodd Full Book
  • The Last Days of Good People by A.T. Sayre on Audiobook New
  • Online Read Ebook The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • PDF EPUB Download The Rainbow Diet A Guidebook to the Science and Art of Colorful Foods for Health
  • DOWNLOADS Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • download pdf The Housemaid La empleada by Freida McFadden
  • Read online My Little Pony Set Your Sail by Megan Brown Casey Gilly Amy Mebberson
  • Download PDF Lady Nightmare by Rachel M. Yoldi
  • En el amor y en la guerra La catedral del mar 3 by Ildefonso Falcones on Ipad
  • Download PDF Do You Like Big Girls Omnibus Vol. 3-4 by Goro Aizome
  • Read pdf The Way Forward by Yung Pueblo
  • Read pdf The Husky and His White Cat Shizun Erha He Ta De Bai Mao Shizun Novel Vol. 5 by Rou Bao B
  • PDF EPUB Download Watching the River Run A Photographic Journey Down the Youghiogheny by Tim Palme
  • epub download The Devil and Mrs. Davenport A Novel by Paulette Kennedy
  • DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN on Audiobook New
  • PDF EPUB Download The False One By John Fletcher and Philip Massinger by Domenico Lovascio Full Book
  • PDF Heaven A Novel by Mieko Kawakami Sam Bett David Boyd
  • Newt A Cookbook for All by Newt Nguyen on Audiobook New
  • The Harry Potter Wizarding Almanac The Official Magical Companion to J.K. Rowlings Harry Potter Book
  • Download Pdf Cute Fantasy Art Class Mystical Anime Besties - Learn to Draw over 50 Charming Characte
  • DOWNLOAD PDF EPUB Whispered Curses by S D Gredell
  • PDF Kindle The DOSE Effect Optimize Your Brain and Body by Boosting Your Dopamine Oxytocin Seroto
  • epub download Accomplice to the Villain by Hannah Nicole Maehrer
  • The Satsuma Complex by Bob Mortimer on Audiobook New
  • PDF Download Original Sins The Miseducation of Black and Native Children and the Construction of A
  • pdf download A Clinicians Guide to Healing the Wounds of Racial Trauma A 12-Session CBT-Based Protoc
  • The Marshals Mission by Anna Zogg on Ipad
  • DOWNLOAD PDF EPUB Hypertension A Companion to Braunwalds Heart Disease by George L. Bakris MD Mat
  • PDF EPUB Download Stranger Things Flight of Icarus by Caitlin Schneiderhan Full Book
  • Coltons Deadly Trap by Patricia Sargeant on Iphone New Format
  • PDF Download The AI Playbook Mastering the Rare Art of Machine Learning Deployment by Eric Siegel
  • PDF DOWNLOAD Clever Girl Jurassic Park by Hannah McGregor on Iphone
  • pdf download Gudetama The Official Cookbook Recipes for Living a Lazy Life by Sanrio Jenn Fujikawa
  • DOWNLOAD PDF EPUB Framed Environment Design by Marcos Mateu-Mestre
  • Read Pdf The Worlds Finest Assassin Gets Reincarnated in Another World as an Aristocrat Vol. 7 ma
  • Read pdf Quest for the Hidden City Star Wars The High Republic by George Mann
  • DOWNLOADS SPIDER-MAN REIGN 2 by Kaare Andrews
  • Online Read Ebook Whats Your Favorite Animal by Eric Carle
  • Thucydides A Very Short Introduction by Jennifer T. Roberts on Iphone New Format
  • PDF EPUB Download The Governesss Scandalous Marriage by Helen Dickson Full Book
  • PDF Kindle Darkfever by Karen Marie Moning
  • Read Pdf High Sticking The Heart by Marie M
  • Read online Victoria Stitch Dark and Sparkling by Harriet Muncaster
  • Download PDF Anatomy Physiology and Pathology Third Edition A Practical Illustrated Guide to the
  • PDF Kindle Be a Revolution How Everyday People Are Fighting Oppression and Changing the World-and H
  • 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:35:15
Previous
Deletes a pet
Built with