My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Nesting A Novel by Roisín ODonnell
  • Read pdf The Hunchback of Notre-Dame by Victor Hugo
  • Download PDF The Essentialism Planner A 90-Day Guide to Accomplishing More by Doing Less by Greg McK
  • Stuart Woods Smolder by Brett Battles on Audiobook New
  • PDF EPUB Download Tales Of Space And TimeIllustrated by H. G. Wells Micheal Smith Full Book
  • PDF DOWNLOAD Eighteen A History of Britain in 18 Young Lives by Alice Loxton on Iphone
  • PDF EPUB Download Alexey Brodovitch Astonish Me by Katy Wan Vince Aletti David Campany Full Book
  • Pdf ePub Sing Backwards and Weep A Memoir by Mark Lanegan download ebook
  • DOWNLOAD PDF EPUB Unleash Your Financial Superpowers How the First-Generation Wealthy Do It and Ho
  • Download Pdf Middletide A Novel by Sarah Crouch
  • Online Read Ebook The Amish Marriage Bargain and Finding Her Amish Love by Marie E. Bast Rebecca Ke
  • PDF EPUB Download Boot Camp by Gina Musa Full Book
  • PDF The Little Book of Tom. Blue Collar by Dian Hanson Tom of Finland
  • download pdf Hematology Board Review Blueprint Study Guide and QA by Rami N. Khoriaty MD Morgan Jo
  • TANKHEAD - Mechanical Encyclopedia Artbook by Tim Popelier Emerson Tung on Audiobook New
  • PDF DOWNLOAD A Crown in Shadows by Alecia B Kirby on Iphone
  • Download PDF Public Domain Volume 2 by Chip Zdarsky
  • The body is where it all begins by Marcy Rae Henry on Iphone New Format
  • After-Hours Proposal by Trish Morey on Iphone New Format
  • DOWNLOADS Inside the Tentacle Cave Manga Vol. 4 by Umetane Abi Fufukuro
  • Download PDF The Case Files of Jeweler Richard Light Novel Vol. 6 by Nanako Tsujimura Utako Yukihir
  • PDF Yata-Momo Part 1 by Harada
  • Wed on the Wagon Train by Tracy Blalock on Audiobook New
  • DOWNLOADS Manifest 7 Steps to Living Your Best Life by Roxie Nafousi
  • Download PDF Christ in Dachau by John Lenz
  • DOWNLOAD PDF EPUB Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bili
  • Download Pdf Death in Paradise The Puzzle Book by Death in Paradise
  • Feigin and Cherrys Textbook of Pediatric Infectious Diseases 2-Volume Set by James Cherry MD MSc S
  • PDF EPUB Download Hands on Research for Artists Designers Educators by Harma Staal Jojanneke Gijs
  • download pdf Boys in the Valley by Philip Fracassi
  • DOWNLOADS Guy Bourdin Photofile by Gilles De Bure
  • epub download Bea Mullins Takes a Shot by Emily Deibert
  • PDF Kindle Supernatural An Official Spooky Picture Book by Micol Ostow Christian Cornia
  • Pseudoscience An Amusing History of Crackpot Ideas and Why We Love Them by Lydia Kang MD Nate Peder
  • PDF Playing Death Games to Put Food on the Table Vol. 2 by Yushi Ukai Nekometaru
  • DOWNLOADS Tsugumi Project 6 by ippatu
  • Monster High Ever After High The Legend of Shadow High by Shannon Hale Dean Hale on Iphone New Form
  • Process Groups A Practice Guide by Project Management Institute PMI on Ipad
  • Download Pdf Super Beast 96 by Lawler
  • Download Pdf Memories and Monsters by Nicole Kiffe Luis Castillo Michelle Hernandez
  • Our Sweet Violet The third book in the Flower Girls collection from Britains best-loved saga author
  • DOWNLOADS A Holiday Match by Belle Calhoune Lois Richer
  • PDF EPUB Download Hitorijime My Hero 15 by Memeco Arii Full Book
  • pdf download Engaged in Deception by Kim Lawrence
  • Italian Wines 2025 by Gambero Rosso on Iphone New Format
  • Read pdf Big Name Fan by Ruthie Knox Annie Mare
  • epub download The Art of DreamWorks Dog Man by Ramin Zahed Dav Pilkey Peter Hastings
  • Online Read Ebook Sheep Princess in Wolfs Clothing Vol. 5 by Mito
  • PDF DOWNLOAD The Cleaner by Samantha Beal on Iphone
  • PDF DOWNLOAD The Reluctant Guardian by Susanne Dietze on Iphone
  • 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-09 21:33:10
Previous
Deletes a pet
Built with