My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Billionaires Bargain by Maureen Child
  • Pdf ePub Magnolia Parks by Jessa Hastings download ebook
  • Pdf ePub Lenswoman in Love a novel of the 1960s 70s by Kim R Gottlieb Walker download ebook
  • Innocent Omnibus Volume 3 by Shinichi Sakamoto Michael Gombos on Ipad
  • Read online The Imperial Uncle by Da Feng Gua Guo E. Danglars Jan Mitsuko Cash
  • DOWNLOAD PDF EPUB Winning Olivias Heart by Mary Davis
  • Download Pdf People of Means A Novel by Nancy Johnson
  • Read online Minecraft Annual 2025 by Mojang AB Farshore
  • Read pdf Woman Hating by Andrea Dworkin
  • PDF Download Musashi An Epic Novel of the Samurai Era by Eiji Yoshikawa Charles Terry
  • PDF DOWNLOAD Dare I Say It Everything I Wish Id Known About Menopause by Naomi Watts Mary Claire
  • DOWNLOAD PDF EPUB Punk 57 by Penelope Douglas
  • Online Read Ebook Mukden 1905 Russia and Japans Battle for Manchuria by John Valitutto Johnny Shuma
  • Read Pdf Oh the Places Youll Go by Dr. Seuss
  • epub download Lonely Castle in the Mirror Manga Vol. 5 by Mizuki Tsujimura Tomo Taketomi
  • PDF DOWNLOAD Bloodguard by Cecy Robson on Iphone
  • DOWNLOADS Smother Poems by Rachel Richardson
  • Online Read Ebook Yes Mistress Why Men Crave Female Domination by Alicia Zadig
  • DOWNLOAD PDF EPUB Resurrection Walk by Michael Connelly
  • epub download Harry Potter Afternoon Tea Magic Official Snacks Sips and Sweets Inspired by the Wiz
  • epub download The Fast Track Inside the Surging Business of Womens Sports by Jane McManus
  • Classroom Assessment Techniques Formative Feedback Tools for College and University Teachers by Thom
  • Read pdf CompTIA Tech CertMike Prepare. Practice. Pass the Test Get Certified Exam FC0-U71 by Mike
  • Read pdf Four Ruined Realms Deluxe Limited Edition by Mai Corland
  • pdf download Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Josep
  • PDF EPUB Download Asumi-chan is Interested in Lesbian Brothels Vol. 3 by Kuro Itsuki Full Book
  • PDF Kindle Laid-Back Camp Vol. 16 by Afro Amber Tamosaitis
  • PDF Kindle You Are Fatally Invited A Novel by Ande Pliego
  • PDF DOWNLOAD Hands-On Large Language Models Language Understanding and Generation by Jay Alammar
  • Download PDF The Boyhood of Cain by Michael Amherst
  • Download PDF Theres Always This Year On Basketball and Ascension by Hanif Abdurraqib
  • PDF DOWNLOAD Made for More by Chloe Ito Ward Gael Abary on Iphone
  • Greenteeth by Molly ONeill on Iphone New Format
  • The National Telepathy by Roque Larraquy Frank Wynne on Audiobook New
  • download pdf Mercy by Ian Haramaki
  • epub download Fatal Freeze by Michelle Karl
  • Download PDF Justine Cooks A Cookbook Recipes Mostly Plants for Finding Your Way in the Kitchen by J
  • Online Read Ebook Robert Kuok A Memoir by Andrew Tanzer
  • Lolly Willowes Or The Loving Huntsman by Sylvia Townsend Warner Mona Awad on Iphone New Format
  • Read Pdf Farewell My Odin Vol.1 by Chihiro Yoshioka
  • PDF Download Matzah Day by Charlotte Offsay Jason Kirschner
  • Read pdf The Knight and the Moth by Rachel Gillig
  • Read pdf When Stars Are Scattered by Victoria Jamieson Omar Mohamed Iman Geddy
  • DOWNLOADS Disrupting the Game From the Bronx to the Top of Nintendo by Reggie Fils-Aimé
  • download pdf Harry Potter and Fantastic Beasts Official Wizarding World Cookbook Spellbinding Meals
  • Online Read Ebook Robert Ludlums The Bourne Vendetta by Brian Freeman
  • PDF EPUB Download Star Wars The Mask of Fear by Alexander Freed Full Book
  • Read pdf Modern Libertarianism A Brief History of Classical Liberalism in the United States by Bri
  • PDF EPUB Download Follow Her Heart by Marta Perry Full Book
  • Read online Afterlove by Tanya Byrne
  • 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-06 23:47:30
Previous
Deletes a pet
Built with