My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Darkfever by Karen Marie Moning on Ipad
  • Download PDF Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Barri
  • Read online Play of Shadows by Sebastien de Castell
  • PDF Kindle Matty Matheson Soups Salads Sandwiches A Cookbook by Matty Matheson
  • DOWNLOADS Total War Warhammer - The Art of the Games by Paul Davies
  • Read pdf The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinbac
  • Social Security Medicare Government Pensions Get the Most Out of Your Retirement and Medical Benef
  • PDF EPUB Download Easygoing Territory Defense by the Optimistic Lord Production Magic Turns a Name
  • PDF DOWNLOAD The Self-Regulation Workbook for 3- to 5-Year-Olds Play-Based and Creative Activities
  • Read Pdf The World to Come by Robert Macfarlane Johnny Flynn Emily Sutton
  • PDF CABIN Off the Grid Adventures with a Clueless Craftsman by Patrick Hutchison
  • Download Pdf How Life Works A Users Guide to the New Biology by Philip Ball
  • epub download Blood on Satans Claw or The Devils Skin by Robert Wynne-Simmons Richard Wells
  • The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by Randy Ribay on I
  • download pdf Portraits with Procreate A Beginners Guide to Drawing and Painting Faces by Melissa De
  • Eleven Madison Park The Plant-Based Chapter A Cookbook by Daniel Humm on Ipad
  • Online Read Ebook His Enemys Italian Surrender by Sharon Kendrick
  • God of Ruin Special Edition Print by Rina Kent on Iphone New Format
  • PDF EPUB Download Village Politics Can Be Murder by Jeanne M. Dams Full Book
  • epub download Murder She Wrote by Bridget Kies Barry Keith Grant
  • Pdf ePub Wed on the Wagon Train by Tracy Blalock download ebook
  • DOWNLOADS Princeton Review AP Statistics Prep 20th Edition 5 Practice Tests Complete Content Revie
  • DOWNLOAD PDF EPUB The Highlanders Return A Novel by Lynsay Sands
  • Nadiyas Simple Spices A guide to the eight kitchen must haves recommended by the nations favourite c
  • DOWNLOADS Til Death Do Us Bard A heart-warming tale of marriage magic and monster-slaying by Rose
  • download pdf Guarding the Witness by Laura Scott Heather Woodhaven
  • Download PDF The Dead We Honor by William W. Johnstone J. A. Johnstone
  • Pdf ePub What You Make of Me A Novel by Sophie Madeline Dess download ebook
  • Download PDF DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • PDF EPUB Download Fever Pitch How Caitlin Clark Captivated the World and Won Rookie of the Year by
  • PDF EPUB Download Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori Full Book
  • download pdf Radical Self-Care for Helpers Healers and Changemakers by Nicole Steward
  • Short Game Mitsuru Adachis Baseball Short Story Collection by Mitsuru Adachi on Audiobook New
  • PDF Kindle The Rialto in Richmond The Money War Between the States Other Mysteries of the Civil Wa
  • DOWNLOADS All the Parts We Exile by Roza Nozari
  • PDF DOWNLOAD Sicilian Avengers Book One by Luigi Natoli Stephen Riggio Umberto Eco on Iphone
  • pdf download Irreducible Consciousness Life Computers and Human Nature by Federico Faggin
  • Online Read Ebook It Begins With Me Why Self Esteem Matters by Dana Hammond
  • pdf download Creep It Under Wraps Monster High School Spirits 2 by Adrianna Cuevas
  • Pdf ePub The Peoples Hospital Hope and Peril in American Medicine by Ricardo Nuila download ebook
  • Casualties of Truth by Lauren Francis-Sharma on Iphone New Format
  • pdf download It Lasts Forever and Then Its Over by Anne de Marcken
  • pdf download Jujutsu Kaisen The Official Character Guide by Gege Akutami
  • PDF Kindle Outlive The Science and Art of Longevity by Peter Attia MD Bill Gifford
  • Read pdf Oathbound by Tracy Deonn
  • epub download Un cuento perfecto by Elísabet Benavent
  • PDF DOWNLOAD Dinghai Fusheng Records Novel Vol. 1 Special Edition by Fei Tian Ye Xiang Qian Er Ba
  • PDF EPUB Download The First Girl by Claire McGowan Full Book
  • pdf download Lady Nightmare by Rachel M. Yoldi
  • The Darkness Outside Us by Eliot Schrefer on Ipad
  • 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-12 02:57:30
Previous
Deletes a pet
Built with