My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Woodpecker Method 2 by Axel Smith
  • DOWNLOADS Demystifying Disability What to Know What to Say and How to Be an Ally by Emily Ladau
  • Online Read Ebook You Were Experienced I Was Not Our Dating Story 5th Date Light Novel by Makiko Na
  • PDF DOWNLOAD Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell on I
  • Brain Games - Puzzles for Mom More Than 170 Puzzles to Brighten Moms Day by Publications Internation
  • DOWNLOADS Moonbound A Novel by Robin Sloan
  • PDF Nothing Serious A Novel by Emily J. Smith
  • pdf download The Immortal by S. R. Finch
  • PDF EPUB Download Mythic Plants Potions and Poisons from the Gardens of the Gods by Ellen Zachos F
  • Download PDF The Ballad of Smallhope and Pennyroyal Meet your favourite new partners-in-crime in 202
  • pdf download Russia and Ukraine Entangled Histories Diverging States by Maria Popova Oxana Shevel
  • Download Pdf Power and Terror Conflict Hegemony and the Rule of Force by Noam Chomsky John Junker
  • epub download Moregasm Babelands Guide to Mind-Blowing Sex by Claire Cavanah Rachel Venning
  • DOWNLOAD PDF EPUB La invención de todas las cosas The Invention of All Things by Jorge Volpi
  • Online Read Ebook A Haunt for Jackals by J. L. Odom
  • Online Read Ebook The Knight and the Moth by Rachel Gillig
  • Pdf ePub Throttled by Lauren Asher download ebook
  • PDF EPUB Download Tokyo Revengers A Letter from Keisuke Baji Vol. 3 by Ken Wakui Yukinori Natsuka
  • PDF Download Philosophy 2e Asking Questions Seeking Answers by Stephen Stich Thomas Donaldson
  • DOWNLOADS The Villainess Turns the Hourglass Vol. 6 by Antstudio
  • Love is an Illusion - The Queen Vol. 1 by Fargo on Iphone New Format
  • DOWNLOAD PDF EPUB You Dont Need to Forgive Trauma Recovery on Your Own Terms by Amanda Ann Gregory
  • Download PDF Train Japan The Essential Rail Guide to Japan by Steve Wide Michelle Mackintosh
  • Better Than the Movies by Lynn Painter on Audiobook New
  • Beginners Guide to Creating Portraits Learning the essentials developing your own style by on Audi
  • PDF EPUB Download Middletide A Novel by Sarah Crouch Full Book
  • PDF Kindle Sun Ssukgat The Korean Art of Self-Care Wellness Longevity by Michelle Jungmin Bang
  • Read pdf A Quiet Mind Buddhist ways to calm the noise in your head by Shoukei Matsumoto
  • DOWNLOADS Twisted Lace by A M McCoy
  • PDF EPUB Download The Courage Gap 5 Steps to Braver Action by Margie Warrell PhD Full Book
  • PDF Download Hunting the Falcon Henry VIII Anne Boleyn and the Marriage That Shook Europe by Joh
  • PDF The art of darkness The history of goth by John Robb
  • Read online Planeta by Ana Oncina
  • Framed Environment Design by Marcos Mateu-Mestre on Iphone New Format
  • PDF EPUB Download The Magic Words Simple Poetry Prompts That Unlock the Creativity in Everyone by Jo
  • Read pdf The Final Wish of Mr. Murray McBride A Novel by Joe Siple
  • download pdf A Discovery of Witches by Deborah Harkness
  • Read Pdf The Official Stardew Valley Cookbook by ConcernedApe Ryan Novak
  • download pdf Tailspin by John Armbruster
  • PDF Kindle Sword of the Titans by Kashidashiki
  • Pdf ePub Beach Read by Emily Henry download ebook
  • DOWNLOADS Gold by Raven Kennedy
  • Scrappy Little Nobody by Anna Kendrick on Ipad
  • PDF EPUB Download Shelterwood by Lisa Wingate Full Book
  • epub download The Iron Flower by Laurie Forest
  • PDF EPUB Download The Liminal Zone by Junji Ito Full Book
  • DOWNLOADS The Naughtiest Unicorn and the Birthday Party by Pip Bird David OConnell
  • PDF Download Loa a la Tierra by Byung-Chul Han
  • PDF The Royal House of Karedes Books 1-4 Billionaire Prince Pregnant Mistress The Playboy Sheikhs
  • Download Pdf The Disputed Austro-Hungarian Border Agendas Actors and Practices in Western Hungary
  • 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-08 23:57:30
Previous
Deletes a pet
Built with