My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Snowy Day and Other Stories by Lee Chang-dong Yoosup Chang Heinz Insu Fenkl Full
  • An American in Paris A Novel by Margaret Vandenburg on Audiobook New
  • PDF Download Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • Download PDF The Eater Guide to Los Angeles by Eater
  • Read pdf Murder of an Oxford Scientist A gripping and unputdownable cozy Golden Age murder mystery
  • PDF Kindle Excavations A Novel by Kate Myers
  • DOWNLOADS Stand By Me A Guide to Navigating Modern Meaningful Caregiving by Allison J. Applebaum Ph
  • PDF Download The Venetian Sanctuary by Philip Gwynne Jones
  • Unleashing Oppenheimer Inside Christopher Nolans Explosive Atomic-Age Thriller by Jada Yuan on Iphon
  • PDF DOWNLOAD Her Secret Twins by Janette Foreman on Iphone
  • PDF To Sicily with Love by Jennifer Probst
  • Download Pdf His Precious Inheritance by Dorothy Clark
  • DOWNLOADS Go Higher Five Practices for Purpose Success and Inner Peace by Big Sean Jay Shetty
  • Read pdf You Are Fatally Invited A Novel by Ande Pliego
  • PDF EPUB Download Heaven and Hell by Jón Kalman Stefánsson Philip Roughton Full Book
  • Pdf ePub Nine Faces of Christ Quest of the True Initiate by Eugene Whitworth download ebook
  • Read online Sicilian Avengers Book One by Luigi Natoli Stephen Riggio Umberto Eco
  • PDF EPUB Download The Kitty-Catwalk by Melody Mews Ellen Stubbings Full Book
  • Read pdf Game of Thrones House of the Dragon Season 2 Inside the Dawn of the Targaryen Civil War
  • PDF 2028 Tomorrow is the Day by L R OBrien
  • Online Read Ebook Star Wars The Life Day Cookbook Official Holiday Recipes From a Galaxy Far Far Aw
  • Download Pdf Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • Download PDF The Afternoon of Christianity The Courage to Change by Tomás Halík Gerald Turner
  • epub download El niño que perdió la guerra The Boy That Lost the War by Julia Navarro
  • DOWNLOAD PDF EPUB A Clinicians Guide to Healing the Wounds of Racial Trauma A 12-Session CBT-Based
  • Download Pdf The Quilt Binding Bible 25 Flawless Finishes Techniques Troubleshooting by Marci Baker
  • DOWNLOADS Rooster Fighter Vol. 7 by Shu Sakuratani
  • download pdf Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • PDF Kindle The Complete Nonsense Books De-luxe Edition by Edward Lear
  • PDF Tarot for Love Relationships How to read the cards to nurture your heart soul by Jane Struthe
  • Pdf ePub Im Your Man Harlequin Next Series 95 by Susan Crosby download ebook
  • Online Read Ebook USN PT Boat vs IJN Destroyer Tokyo Express 1942-43 by Mark Stille Edouard A. Grou
  • The Mighty Red A Novel by Louise Erdrich on Iphone New Format
  • Download Pdf Distance A Dark Mafia Romance by Luna Mason
  • PDF Kindle Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson
  • download pdf Cooking with Wild Game Volume 26 by EDA Kochimo Gwendolyn Warner
  • Download Pdf Internal Family Systems Therapy Second Edition by Richard C. Schwartz PhD Martha Swee
  • PDF EPUB Download La desaparicion de Stephanie Mailer The Disappearance of Stephanie Mailer by J
  • PDF Download The Moonlight Healers by Elizabeth Becker
  • epub download Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • Download PDF Wedding Dashers by Heather McBreen
  • Download PDF The Psychology of the Extreme by Arie W. Kruglanski Sophia Moskalenko
  • Do You Still Talk to Grandma When the Problematic People in Our Lives Are the Ones We Love by Brit B
  • PDF EPUB Download People of Means A Novel by Nancy Johnson Full Book
  • PDF Kindle I Havent Been Entirely Honest with You by Miranda Hart
  • Read Pdf An Absolutely Remarkable Thing A Novel by Hank Green
  • PDF EPUB Download Lonely Planet Malta Gozo by Brett Atkinson Full Book
  • PDF EPUB Download Christmas in Coconut Creek by Karissa Kinword Full Book
  • download pdf Aska by Fredrik Berselius
  • PDF EPUB Download The Transformative Magic of M Code in Power Query Excel Power BI A BEGINNERS GUID
  • 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-12 01:58:30
Previous
Deletes a pet
Built with