My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Magnolia Parks. Escoge el camino largo Magnolia Parks The Long Way Home by Jes
  • pdf download Being Lolita A Memoir by Alisson Wood
  • PDF EPUB Download About Grace by Barbara Shoup Full Book
  • Pdf ePub Khadijah Story of Islams First Lady by Fatima Barkatulla download ebook
  • PDF EPUB Download A Day at the Post Office by Theonesse Cheon Full Book
  • Creating Your Own Economy A Guide to Financial Freedom and Generous Living by Dave Martin on Audiobo
  • Online Read Ebook Wild Love Standard Edition by Elsie Silver
  • PDF Swanna in Love A Novel by Jennifer Belle
  • Online Read Ebook Twenty Thousand Cows The Almost Impossible Word Search by Alex Cheddar
  • download pdf Battle Mountain by C. J. Box
  • DOWNLOADS Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein
  • download pdf The Mind-Gut-Immune Connection Understanding How Food Impacts Our Mind Our Microbiome
  • epub download Platform Engineering A Guide for Technical Product and People Leaders by Camille Fou
  • PDF Download Vendetta Luckys Revenge by Jackie Collins
  • PDF DOWNLOAD Billionaires Bargain by Maureen Child on Iphone
  • Building Your Own Home A Comprehensive Guide for Owner-Builders by George Wilkie on Ipad
  • Download Pdf After Annie by Anna Quindlen
  • PDF DOWNLOAD Dangerous Amish Memories by Diane Burke Debby Giusti on Iphone
  • Download PDF Something in the Walls A Novel by Daisy Pearce
  • PDF DOWNLOAD The Mafia Nanny A WEBTOON Unscrolled Graphic Novel by SH00 Violet Matter on Iphone
  • Read Pdf The Baby Swap An addictive and unputdownable psychological thriller with a heart-stopping
  • Read online When the Sky Burned October 8 1871 by Liz Tolsma
  • The Science of Weird Shit Why Our Minds Conjure the Paranormal by Chris French Richard Wiseman on A
  • PDF EPUB Download The Quilt Binding Bible 25 Flawless Finishes Techniques Troubleshooting by Marc
  • DOWNLOAD PDF EPUB Nightcrawler Eye on the Sky by John Tedesco Gerald Tedesco Donna Nardo
  • DOWNLOAD PDF EPUB Where Is My Brother A familys journey through grief and loss by Sean Edward Fox
  • DOWNLOAD PDF EPUB Your Magnificent Mouth A Training Young Hearts rhyming book by Abbey Wedgeworth
  • Lore Olympus Volume Three by Rachel Smythe on Audiobook New
  • DOWNLOAD PDF EPUB Yana Toboso Artworks Black Butler 4 by Yana Toboso Tomo Kimura
  • Threshold to Valley Forge The Six Days of the Gulph Mills Encampment by Sheilah D. Vance on Audioboo
  • epub download The Metabolism Makeover Workbook by Megan Hansen RDN
  • Download PDF Missing White Woman by Kellye Garrett
  • Read online ADHD A Hunter in a Farmers World by Thom Hartmann Michael Popkin
  • PDF EPUB Download A Haunt for Jackals by J. L. Odom Full Book
  • Pdf ePub How Do I Turn My Best Friend Into My Girlfriend Vol. 3 by Syu Yasaka download ebook
  • The Whole Time by Catherine Bybee on Iphone New Format
  • PDF Download The Forbidden Wolf King by Leia Stone
  • PDF EPUB Download The Curse of Sins by Kate Dramis Full Book
  • PDF Cree en los sueños y ellos te crearán Believe in Dreams and They Will Create You by Albert E
  • PDF Download And the Chicken Bawkd A story about finding your unique by Randy Mott Lynde Mott
  • Online Read Ebook The Power of Provision by Gary Keesee
  • Download Pdf Sharing Body Heat by Lexie Davis
  • PDF EPUB Download The Violent Take It by Force by Matthew D. Taylor Full Book
  • Read Pdf In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles
  • Read pdf The Secret of Secrets by Dan Brown
  • Read online The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Steve Pruett
  • Online Read Ebook Hiding Him by Adam Hattan
  • PDF DOWNLOAD The Digger and the Flower Board Book by Joseph Kuefler on Iphone
  • DOWNLOADS The Ex Vows by Jessica Joyce
  • PDF EPUB Download Justice Society of America vol. 2 Long Live The JSA by Geoff Johns Mikel Janin
  • 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-11 23:22:01
Previous
Deletes a pet
Built with