My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Final Fantasy VII Remake Traces of Two Pasts Novel by Kazushige Nojima on Audiobook New
  • More Tales of Pirx the Pilot by Stanislaw Lem on Ipad
  • Read pdf The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Steve Pruett
  • Read online Steal My Heart by Laura Pavlov
  • PDF DOWNLOAD Lonely Planet Pocket Bilbao San Sebastian by Isabel Albiston on Iphone
  • DOWNLOADS Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School Stud
  • PDF Download Windy Night with Wild Horses by Mary Pope Osborne AG Ford
  • Download PDF Rebuilding Milo The Lifters Guide to Fixing Common Injuries and Building a Strong Found
  • Read online Juniper Hill by Devney Perry
  • PDF Download God Didnt Make Us to Hate Us 40 Devotions to Liberate Your Faith from Fear and Reconn
  • pdf download As Long as the Lemon Trees Grow by Zoulfa Katouh
  • Read online Sins Poison of the Heart by Haifaa Younis
  • The Brothers Karamazov A New Translation by Michael R. Katz by Fyodor Dostoevsky Michael R. Katz on
  • download pdf A Shadow in the Ember by Jennifer L. Armentrout
  • Read pdf DOCTOR WHO MONSTROUS BEAUTY TP by Jacqueline Rayner Scott Gray Dan Abnett Gareth Rober
  • download pdf High-Functioning Anxiety A 5-Step Guide to Calming the Inner Panic and Thriving by Lal
  • Dead by Daylight The Legion by Nadia Shammas Dillon Snook on Iphone New Format
  • Online Read Ebook Lincolns Last Card The Emancipation Proclamation as a Case of Command by Richard J
  • Download PDF Relinquished Realms by Joaquïn Baldwin
  • epub download Rick Steves Belgium Bruges Brussels Antwerp Ghent by Rick Steves Gene Openshaw
  • PDF EPUB Download Dawn of Grace Mary Magdalenes Story by Jill Eileen Smith Full Book
  • Download PDF Sally Face Art Lore and More by Steve Gabry
  • pdf download A Path to Forgiveness by Carrie Lighte Vannetta Chapman
  • DOWNLOADS Rick Riordan Presents A Touch of Blood by Sajni Patel
  • PDF Kindle Black Girls and How We Fail Them by Aria S. Halliday
  • Inherit Your Freedom Break Generational Curses and Reclaim the Future God Has for You by Mike Signor
  • Read Pdf Two Weddings and a Murder by Alyssa Maxwell
  • Read online Hematology Board Review Blueprint Study Guide and QA by Rami N. Khoriaty MD Morgan Jone
  • epub download Whispered Curses by S D Gredell
  • Read pdf Why England Slept by John F. Kennedy Henry R. Luce
  • The Grief of Stones by Katherine Addison on Ipad
  • pdf download The Irresistible Urge to Fall for Your Enemy Book 1 of the Dearly Beloathed Duology by
  • Street Fighter Swimsuit Special Collection by UDON Various on Iphone New Format
  • PDF EPUB Download Truth Matters A Dialogue on Fruitful Disagreement in an Age of Division by Rober
  • Download PDF Canary Girls A Novel by Jennifer Chiaverini
  • Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker on Audiobook New
  • Pdf ePub Katabasis Deluxe Limited Edition A Novel by R. F. Kuang download ebook
  • pdf download Crocheted Bees Bugs Butterflies by Vanessa Mooncie
  • DOWNLOAD PDF EPUB The Last Hamilton A Novel by Jenn Bregman
  • Read pdf The Art of Octopath Traveler 2016-2020 by Square Enix NAOKI NAOKI
  • PDF EPUB Download No Apologies by Sybil Bartel Full Book
  • Online Read Ebook Spheres by V. Angelo
  • PDF Download Monash University Low FODMAP The Cookbook by The Monash FODMAP Team
  • Download PDF The Kitty-Catwalk by Melody Mews Ellen Stubbings
  • PDF Before We Forget Kindness by Toshikazu Kawaguchi
  • The Once and Future Sex Going Medieval on Womens Roles in Society by Eleanor Janega on Iphone New Fo
  • Online Read Ebook Ambessa Chosen of the Wolf A League of Legends Arcane Novel by C. L. Clark
  • DOWNLOADS The Roman Republic and Political Culture German Scholarship in Translation by Amy Russell
  • Transsexual Transgender Transhuman Dispatches from The 11th Hour by Jennifer Bilek on Iphone New For
  • PDF Download On Her Terms by Cathryn Fox
  • 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 00:18:45
Previous
Deletes a pet
Built with