My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS The Beauty of Horror Haunted Holidays Coloring Book by Alan Robert
  • Download Pdf Functional Programming in C How to improve your C programs using functional techniques
  • Pdf ePub Succession Season One The Complete Scripts by Jesse Armstrong download ebook
  • Read Pdf The Antique Hunters Death on the Red Sea A Novel by C.L. Miller
  • PDF Kindle Meet Shai Gilgeous-Alexander Oklahoma City Thunder Superstar by Margaret J. Goldstein
  • The End of the World Is Just the Beginning Mapping the Collapse of Globalization by Peter Zeihan on
  • pdf download Dinner Tonight Simple Meals Full of Mediterranean Flavor by Meliz Berg
  • DOWNLOAD PDF EPUB Barry the boys The CIA the Mob and Americas Secret History by Daniel Hopsicke
  • Online Read Ebook Freshman Year A Graphic Novel by Sarah Mai
  • Download PDF Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor Eri
  • PDF Download Stereophonic by David Adjmi Will Butler
  • PDF DOWNLOAD Las 48 leyes del poder The 48 Laws of Power by Robert Greene on Iphone
  • DOWNLOADS Wild Love Standard Edition by Elsie Silver
  • Read online A Slash of Emerald by Patrice McDonough
  • download pdf The Legend of Vox Machina The Whitestone Chronicles Volume 1--Ripley by Critical Role
  • Read pdf Bad Therapy Why the Kids Arent Growing Up by Abigail Shrier
  • download pdf Nuclear War A Scenario by Annie Jacobsen
  • PDF Download Anathema by Keri Lake Julie Belfield
  • download pdf Things I Wish I Told My Mother The Perfect Mother-Daughter Book Club Read by Susan Pat
  • DOWNLOAD PDF EPUB Max Greenes Big Dream by Casey Hutchison
  • Download Pdf Isaacs Song A Novel by Daniel Black
  • Online Read Ebook About Grace by Barbara Shoup
  • Read Pdf Hungerstone by Kat Dunn
  • Read Pdf Pride and Prejudice by Jane Austen
  • pdf download AI 2041 Ten Visions for Our Future by Kai-Fu Lee Chen Qiufan
  • PDF Download Something Like Fate A Novel by Amy Lea
  • Read pdf A Legend in the Baking A Novel by Jamie Wesley
  • Online Read Ebook No Rest for the Wicked by Kresley Cole
  • High Density High Mountain Trackers HMT 2G 3 by Freya Barker on Iphone New Format
  • The MANIAC by Benjamín Labatut on Iphone New Format
  • PDF EPUB Download The Librarians of Lisbon A WWII Story of Love and Espionage by Suzanne Nelson Fu
  • PDF Download The Cowboys Easter Surprise An Uplifting Inspirational Romance by Jill Kemerer
  • Read Pdf New Moons Phases of Healing by r.h. Sin
  • Online Read Ebook Heartless Special Edition by Elsie Silver
  • epub download Ever Mine by Laura Pavlov
  • PDF EPUB Download Celestial Elysium Girls by Stefan Soell Full Book
  • DOWNLOADS Point of Contact by Melanie Hansen
  • PDF Kindle Modern Libertarianism A Brief History of Classical Liberalism in the United States by Br
  • Read online Trouble Dog From Shelter Dog to Conservation Hero by Carol A. Foote Larry Day
  • The Foghorn Echoes by Danny Ramadan on Iphone New Format
  • Batman Knightfall Omnibus Vol. 2 Knightquest 2025 Edition by Chuck Dixon Michael T. Gilbert Tom Gr
  • Read pdf Good Morning Cat by Rob Abbott Katie Saunders
  • Read Pdf My Happy Marriage Vol. 1 light novel by
  • PDF Her Him I Poems by Christian Weissmann
  • PRINCE2 Study Guide 2017 Update by David Hinde on Ipad
  • Read pdf True Beauty Volume Three A WEBTOON Unscrolled Graphic Novel by Yaongyi
  • Download PDF You Are the Boss of You Cultivate the Mindset and Tools to Live Life on Your Terms by S
  • How to Disappear and Live Off the Grid A CIA Insiders Guide by John Kiriakou on Ipad
  • Download PDF All Rhodes Lead Here A Novel by Mariana Zapata
  • PDF Kindle Ours for Halloween A Dark Monster Romance Novella by Violet Taylor
  • 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-13 21:43:35
Previous
Deletes a pet
Built with