My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid French
  • PDF Kindle Barren by Peter V. Brett
  • Captive on the High Seas by Christina Rich on Ipad
  • Casualties of Truth by Lauren Francis-Sharma on Audiobook New
  • The Very Hungry Caterpillars Animal Colors by Eric Carle on Ipad
  • Read pdf The Next Deadly Chapter by V. M. Burns
  • PDF Kindle Strangers Among Us Murder in a Small Town by L.R. Wright
  • PDF The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • PDF Brutal Prince Illustrated Edition by Sophie Lark
  • Thursdays at Eight by Debbie Macomber on Audiobook New
  • Read pdf Mathematics Tasks for the Thinking Classroom Grades K-5 by Peter Liljedahl Maegan Girou
  • PDF EPUB Download Swallowed by Meg Smitherman Full Book
  • Download Pdf Catch Me a Killer A Profilers True Story by Micki Pistorius
  • download pdf Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bilingual
  • Her Amish Chaperone and The Amish Bakers Rival by Leigh Bale Marie E. Bast on Iphone New Format
  • Download PDF Wild Roses and Pretenders Vol. 2 by Kamoburger
  • Last Dance in Salzburg Miss Ashford Investigates Book 4 by Vivian Conroy on Iphone New Format
  • PDF Download Max Beckmann by Christiane Zeiller Bernhard Maaz
  • download pdf Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda Stewar
  • Honey Lemon Soda Vol. 8 by Mayu Murata Amanda Haley on Ipad
  • PDF Download The Moonlight Healers by Elizabeth Becker
  • PDF Beneath the Trees Where Nobody Sees by Patrick Horvath
  • epub download The Forgive for Good Recovery Workbook Overcome Addiction Heal Your Past and Find Pe
  • PDF EPUB Download World Heritage Sites The Definitive Guide to All 1 199 UNESCO World Heritage Sit
  • PDF DOWNLOAD Bioethics and Brains A Disciplined and Principled Neuroethics by John R. Shook James
  • epub download Hungerstone by Kat Dunn
  • PDF EPUB Download Patchwork Quilt Murder by Leslie Meier Full Book
  • epub download Coding Roblox Games Made Easy - Second edition The ultimate guide to creating games wi
  • PDF In the Distance by Hernan Diaz
  • Online Read Ebook Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexis
  • DOWNLOAD PDF EPUB Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenche
  • Download PDF John Cuneos Good Intentions by John Cuneo
  • pdf download Tokyo Dreaming A Novel by Emiko Jean
  • PDF Losing Sight by Tati Richardson
  • The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by Randy Ribay on A
  • 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-10 01:28:02
Previous
Deletes a pet
Built with