My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Icons of Mens Style by Josh Sims
  • Story of Taylor Swift by Lindsey Sagar on Audiobook New
  • Read pdf Stop Thief Anarchism and Philosophy by Catherine Malabou Carolyn Shread
  • PDF Kindle Makeup to Breakup My Life In and Out of Kiss by Peter Criss
  • PDF Kindle Eclipse by Wilder Poetry
  • epub download Kama-Sutra Una postura para cada dia by DK
  • download pdf Makeup is Not Just Magic A Manga Guide to Cosmetics and Skin Care by Ikumi Rotta
  • PDF DOWNLOAD Just the Good Stuff No-BS Secrets to Success No Matter What Life Throws at You by Jim
  • PDF Kindle Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • Read pdf Bonded in Death by J. D. Robb
  • PDF Rebel Moon Wolf Ex Nihilo Cosmology Technology by Peter Aperlo
  • Read online Before the Tavern 100 Character Concepts for Tabletop Role-Playing Games by Gus Rachels
  • Simply the Best A Chicago Stars Novel by Susan Elizabeth Phillips on Ipad
  • PDF Download Tearmoon Empire Volume 12 by Nozomu Mochitsuki Gilse Madeleine Willette
  • Heart Breath Mind Conquer Stress Build Resilience and Perform at Your Peak by Leah Lagos on Ipad
  • Read pdf Sugar Apple Fairy Tale Vol. 4 manga by Aki YozoranoUdon Miri Mikawa Nicole Wilder
  • DOWNLOADS Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • DOWNLOADS The Museum Heist A Mystery Agency Puzzle Book by Henry Lewis
  • DOWNLOADS The Dark Ascension Series The Wishless Ones by Hafsah Faizal
  • Daisy Haites by Jessa Hastings on Ipad
  • Download PDF The Baby Swap An addictive and unputdownable psychological thriller with a heart-stoppi
  • download pdf Iced Out by CE Ricci
  • epub download Angel Answers Pocket Oracle Cards A 44-Card Deck and Guidebook by Radleigh Valentine
  • pdf download Diver by Lewis Buzbee
  • PDF Early Bird by Karen Winters Schwartz
  • Whispers of the Heart by Ruth Scofield on Iphone New Format
  • PDF EPUB Download Missed Connections by Justin Deubel Full Book
  • PDF EPUB Download Looking for You A Novel by Alexander McCall Smith Full Book
  • DOWNLOADS Not in Love by Ali Hazelwood
  • Online Read Ebook The Secret of Secrets by Dan Brown
  • Read Pdf Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson
  • Metro Girl An Alexandra Barnaby Adventure by Janet Evanovich on Audiobook New
  • Pdf ePub Harry Potter and the Goblet of Fire The Illustrated Edition by J. K. Rowling Jim Kay down
  • pdf download La Metamorfosis by Franz Kafka
  • PDF DOWNLOAD Phenomena The Golden City of Eyes Phenomena Book 1 by Brian Michael Bendis Andre Lim
  • Tristan and Lancelot A Tale of Two Knights by James Persichetti L.S. Biehler on Ipad
  • download pdf Teenage Mutant Ninja Turtles Saturday Morning Adventures Vol. 4 by Erik Burnham Dan
  • 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 02:01:50
Previous
Deletes a pet
Built with