My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF The Secret History of Audrey James A Novel by Heather Marshall
  • Download Pdf Machine Learning for Physics and Astronomy by Viviana Acquaviva
  • Read online Talk The Science of Conversation and the Art of Being Ourselves by Alison Wood Brooks
  • Read Pdf Not Stolen The Truth About European Colonialism in the New World by Jeff Fynn-Paul
  • PDF DOWNLOAD You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by
  • Read online Thrum by Meg Smitherman
  • DOWNLOAD PDF EPUB Cobalt Red How the Blood of the Congo Powers Our Lives by Siddharth Kara
  • Runescape The Fall of Hallowvale by Robbie MacNiven on Ipad
  • PDF EPUB Download Your Soul Had a Dream Your Life Is It How to Be Held by Life When It Feels Like E
  • epub download Burn After Writing by Sharon Jones
  • PDF DOWNLOAD Creep A Love Story by Emma van Straaten on Iphone
  • PDF Kindle Operative Techniques in Orthopaedic Surgical Oncology by Martin M. Malawer James C Witt
  • Pdf ePub A Bride for Christmas by Jill Kemerer Brenda Minton download ebook
  • PDF EPUB Download The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings Full Bo
  • Download Pdf I May Be a Guild Receptionist but Ill Solo Any Boss to Clock Out on Time Vol. 4 light
  • Read pdf Better Than the Movies by Lynn Painter
  • The First Night with the Duke Volume 6 by Hwang DoTol Teava MSG on Ipad
  • PDF EPUB Download Bloom by Delilah S. Dawson Full Book
  • Online Read Ebook Murder in an Irish Garden by Carlene OConnor
  • PDF Download Three Grumpy Groomsmen by Emma Foxx
  • Read Pdf Witch Life in a Micro Room Vol. 4 by Akitaka Abby Lehrke
  • Download Pdf Billy and the Epic Escape by Jamie Oliver Mónica Armiño
  • Online Read Ebook Its Me Two Catwad 2 by Jim Benton
  • PDF DOWNLOAD Wes Lang The Black Drawings Works on Paper by Wes Lang Damien Hirst George Vasey on
  • Pdf ePub Pen Pal Special Edition by J.T. Geissinger download ebook
  • Read online Some Desperate Glory by Emily Tesh
  • Read Pdf Mavericks Life stories and lessons of historys most extraordinary misfits by Jenny Draper
  • Read Pdf Turning Twelve A Graphic Novel by Kathryn Ormsbee Molly Brooks
  • Read pdf Stealing Horses to Great Applause The Origins of the First World War Reconsidered by Paul
  • PDF EPUB Download The Wrong Dog by Carol Lea Benjamin Full Book
  • Online Read Ebook Murdle Volume 1 100 Elementary to Impossible Mysteries to Solve Using Logic Skill
  • PDF EPUB Download Every Monday Mabel by Jashar Awan Full Book
  • PDF EPUB Download One Thousand Vines A New Way to Understand Wine by Pascaline Lepeltier Rene Redze
  • Read pdf Here and Now by Corinne Michaels
  • DOWNLOADS I Died for Beauty by Amanda Flower
  • PDF The End of the Moment We Had by Toshiki Okada Samuel Malissa
  • PDF EPUB Download The Lost Deer Queen by H J Nichols Full Book
  • PDF EPUB Download True Love Fades Away When the Contract Ends - One Star in the Night Sky Light Nove
  • DOWNLOADS The Shiunji Family Children Vol. 3 by Reiji Miyajima Reiji Yukino Kevin Gifford
  • Read Pdf Christmas Texas Style by Tina Leonard Leah Vale Linda Warren
  • 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-15 09:42:20
Previous
Deletes a pet
Built with