My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download The Language of Remembering by Patrick Holloway
  • PDF Download Out of Darkness by Alex Gray
  • PDF EPUB Download By the Grace of the Gods Volume 15 Light Novel by Roy Ririnra Adam Seacord Full
  • PDF EPUB Download Max Greenes Big Dream by Casey Hutchison Full Book
  • Read online Twin Star Exorcists Vol. 33 Onmyoji by Yoshiaki Sukeno
  • PDF Sounds Like Love by Ashley Poston
  • PDF Download The Nightingale Deluxe Edition A Novel by Kristin Hannah
  • Build a Girlfriend by Elba Luz on Iphone New Format
  • Why Historically Black Colleges and Universities Matter 25 Years of Historical Research for Justice
  • Online Read Ebook Private Membership Associations PMA The Power of being in the Private by Josh Bar
  • Read online Ruthless Render Volume 2 by dd markk
  • PDF Download Two Nosey Boys by Audrakate Gonzalez
  • The Shepherds Betrothal by Lynn A. Coleman on Audiobook New
  • Read online Taylor Swift and the Philosophy of Re-recording The Art of Taylors Versions by Brandon P
  • download pdf How to Corporate Proven Lessons for Winning at Work by Fela Abioye
  • PDF Download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • epub download Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yu
  • download pdf The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by Ra
  • Download PDF Unhumans The Secret History of Communist Revolutions and How to Crush Them by Jack Poso
  • epub download Near Death Experiences 101 Short Stories That Will Help You Understand Heaven Hell a
  • DOWNLOADS Marvel Comics For Dummies by Troy Brownfield
  • PDF Download Bingsu for Two by Sujin Witherspoon
  • Bates Guide To Physical Examination and History Taking Edition 13 by Lynn S Bickley MD FACP on Ip
  • The Art of Lies of P by NEOWIZ ROUND8 Studio on Ipad
  • Download Pdf Living Design The Writings of Clara Porset by Clara Porset Zoë Ryan Valentina Sarmien
  • epub download Life is Strange Welcome to Blackwell Academy by Matt Forbeck
  • Disney Moana 2 Big Golden Book by Golden Books Disney Storybook Art Team on Audiobook New
  • DOWNLOAD PDF EPUB The Cowboys Surprise Bride The Cowboys Unexpected Family by Linda Ford
  • PDF DOWNLOAD Sins Poison of the Heart by Haifaa Younis on Iphone
  • PDF EPUB Download Surprise Heir for the Princess by Kate Hardy Full Book
  • pdf download Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson
  • On the Art and Craft of Doing Science by Kenneth Catania on Iphone New Format
  • DOWNLOAD PDF EPUB Say Youll Remember Me by Abby Jimenez
  • DOWNLOAD PDF EPUB Mr. Whisper A Thriller by Andrew Mayne
  • PDF EPUB Download Reckless by Lauren Roberts Full Book
  • Read online The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • PDF EPUB Download The God of Story Discovering the Narrative of Scripture Through the Language of St
  • Read Pdf Celtic Weird Tales of Wicked Folklore and Dark Mythology by Johnny Mains
  • epub download Pickleballers by Ilana Long
  • PDF EPUB Download The Hidden Queen Book Two of The Nightfall Saga by Peter V. Brett Full Book
  • PDF Kindle Yojimbot Volume 1 Metal Silence by Sylvain Repos Noiry
  • Booster Shots The Urgent Lessons of Measles and the Uncertain Future of Childrens Health by Adam Rat
  • PDF DOWNLOAD The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by R
  • PDF EPUB Download Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola Full Book
  • Read Pdf Bear County Michigan Stories by John Counts
  • epub download Follow Her Heart by Marta Perry
  • PDF DOWNLOAD The Missing Piece A Proven Method to Single-Handedly Transform Your Relationship and
  • PDF Download The Talent A Novel by Daniel DAddario
  • Pdf ePub ICD-10-CM 2025 the Complete Official Codebook by American Medical Association download ebo
  • PDF Download If You Cant Take the Heat Tales of Food Feminism and Fury by Geraldine DeRuiter
  • 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 23:23:30
Previous
Deletes a pet
Built with