My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Starter Villain by John Scalzi on Iphone New Format
  • Read online From Crook to Cook Platinum Recipes from Tha Boss Doggs Kitchen by Snoop Dogg
  • download pdf Effective Fundraising for Nonprofits Real-World Strategies That Work by Ilona Bray JD
  • Konrad Curze The Night Haunter by Guy Haley on Iphone New Format
  • pdf download Bunburry - Episode 13-15 A Cosy Mystery Compilation by Helena Marchmont
  • PDF EPUB Download Ruined by Sarah Vaughn Sarah Winifred Searle Niki Smith Full Book
  • Online Read Ebook The Art of Lies of P by NEOWIZ ROUND8 Studio
  • Evil Thing A Villains Graphic Novel by Serena Valentino Arielle Jovellanos on Ipad
  • download pdf Alfredo Paredes at Home by Alfredo Paredes Brad Goldfarb
  • epub download Wild Apothecary Reclaiming Plant Medicine for All by Amaia Dadachanji
  • download pdf Beartooth A Novel by Callan Wink
  • Pdf ePub Their Amish Agreement by Patricia Davids Patrice Lewis download ebook
  • Pdf ePub Graphic Design For Everyone Understand the Building Blocks so You can Do It Yourself by Ca
  • Read Pdf One-Armed Jack Uncovering the Real Jack the Ripper by Sarah Bax Horton
  • epub download Claiming His Brothers Baby by Helen Lacey
  • PDF EPUB Download The Way I Used to Be Paperback Collection Boxed Set The Way I Used to Be The Way I
  • Read Pdf One of Us Knows A Thriller by Alyssa Cole
  • epub download The Road to Love Hearts in the Highlands by Linda Ford Ruth Axtell Morren
  • DOWNLOADS Styles of Joy A Feel-Good Framework for Rediscovering Joy with a Twist by SC Perot
  • PDF Download A New Lease on Death A Mystery by Olivia Blacke
  • PDF Kindle Man . . . Mercenary . . . Monarch by Joan Elliott Pickart
  • PDF Kindle The Lede Dispatches from a Life in the Press by Calvin Trillin
  • download pdf Russia and Ukraine Entangled Histories Diverging States by Maria Popova Oxana Shevel
  • pdf download I Am Money by Julia Cook Garrett Gunderson Josh Cleland
  • Pdf ePub Bungo Stray Dogs Wan Vol. 10 by Sango Harukawa Neco Kanai download ebook
  • PDF Infinity Alchemist by Kacen Callender
  • DOWNLOADS The Wild Unknown Alchemy Deck and Guidebook Official Keepsake Box Set by Kim Krans
  • Parasyte Full Color Collection 6 by Hitoshi Iwaaki on Ipad
  • Read Pdf Tied to You Vol. 4 by WHAT Micah Kim
  • Read Pdf Nightwing Vol. 1 Leaping into the Light by Tom Taylor Bruno Redondo
  • Download PDF Brimstone Deluxe Limited Edition by Callie Hart
  • Download PDF Strange Pictures A Novel by Uketsu Jim Rion
  • PDF EPUB Download Foul Play by Erin Kaste Full Book
  • DOWNLOAD PDF EPUB Frenzy 60 Stories of Sudden Sex by Alison Tyler
  • Read Pdf Saving 6 by Chloe Walsh
  • DOWNLOADS STILL The Art of Noticing by Mary Jo Hoffman
  • 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-16 02:22:55
Previous
Deletes a pet
Built with