My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • A Flicker in the Dark A Novel by on Iphone New Format
  • Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley on Iphone New Format
  • She Professed Herself Pupil of the Wise Man Light Novel Vol. 12 by Ryusen Hirotsugu diccasuemitsu
  • Online Read Ebook Finding Avalon The Quest of a Chaosbringer Volume 1 by Akito Narusawa KeG Tom Ha
  • pdf download Fearless by Lauren Roberts
  • DOWNLOAD PDF EPUB Help Wanted A Novel by Adelle Waldman
  • DOWNLOADS The Hard Way by Carol Lea Benjamin
  • PDF DOWNLOAD Eighteen A History of Britain in 18 Young Lives by Alice Loxton on Iphone
  • PDF EPUB Download Born in a Small Town by Debbie Macomber Judith Bowen Janice Kay Johnson Full Boo
  • Download Pdf The Dain Curse by Dashiell Hammett
  • epub download Son of Southtown My Life Between Two Worlds by Sonny Sandoval Jon Foreman
  • Crocheted Bees Bugs Butterflies by Vanessa Mooncie on Audiobook New
  • PDF Download Nero A Novel by Conn Iggulden
  • DOWNLOAD PDF EPUB Cultural Intelligence for Marketers Building an Inclusive Marketing Strategy by
  • Read Pdf Glow of the Everflame by Penn Cole
  • Read Pdf Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage
  • PDF EPUB Download The Marigold Trail by Stefani Tanner Full Book
  • Read online Deify A Mythical Solo Role-Playing Game by Allyson DAntonio Maia Trewartha
  • PDF DOWNLOAD Catch the Sun by Jennifer Hartmann on Iphone
  • Read online The Amish Spinsters Courtship and Her New Amish Family by Emma Miller Carrie Lighte
  • Download Pdf After-Hours Proposal by Trish Morey
  • Pdf ePub Fagin the Thief A Novel by Allison Epstein download ebook
  • Sophies World A Novel About the History of Philosophy 30th Anniversary Edition by Jostein Gaarder P
  • Download Pdf The Psychology of the Extreme by Arie W. Kruglanski Sophia Moskalenko
  • Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori on Iphone New Format
  • Twilight Deluxe Collectors Edition by Stephenie Meyer on Ipad
  • PDF EPUB Download Right-Wing Women by Andrea Dworkin Moira Donegan Full Book
  • Read pdf The Bounty Hunters Redemption by Janet Dean
  • Read Pdf Help Wanted A Novel by Adelle Waldman
  • DOWNLOADS Stranded for the Holidays by Lisa Carter
  • The Garden by Nick Newman on Iphone New Format
  • Download Pdf New York Times Games Classic Crossword Puzzles Red and White 100 Puzzles Edited by Will
  • pdf download La vegetariana The Vegetarian by Han Kang
  • pdf download Im a Behemoth an S-Ranked Monster but Mistaken for a Cat I Live as an Elf Girls Pet
  • epub download Judo Unleashed The Ultimate Training Bible for Judoka at Every Level Revised and Expan
  • Pdf ePub Orlando A Norton Critical Edition by Virginia Woolf Madelyn Detloff download ebook
  • Read Pdf Danganronpa 2 Chiaki Nanamis Goodbye Despair Quest Volume 1 by Karin Suzuragi Spike Chun
  • Baby Let It Snow by Beverly Jenkins Elaine Overton on Audiobook New
  • The Temporary Mrs. Marchetti by Melanie Milburne on Iphone New Format
  • PDF Kindle The Wager A Tale of Shipwreck Mutiny and Murder 2023 BN Author of the Year by David Gra
  • Read Pdf Why Nothing Works Who Killed Progress-and How to Bring It Back by Marc J. Dunkelman
  • Download Pdf Home at Summers End by Alys Murray
  • DOWNLOADS Lactation for the Rest of Us A Guide for Queer and Trans Parents and Helpers by Jacob Enge
  • PDF Download Arctic Heat A Forced Proximity LGBTQ Romance by Annabeth Albert
  • Download PDF The Life Cycle of a CEO The Myths and Truths of How Leaders Succeed by Claudius A Hilde
  • PDF DOWNLOAD THE PLOT TO KILL PRESIDENT KENNEDY IN CHICAGO AND THE OTHER TRACES OF CONSPIRACY LEAD
  • PDF The Swans of Harlem Five Black Ballerinas Fifty Years of Sisterhood and Their Reclamation of
  • epub download What Happens at the Beach. by Rachael Stewart
  • download pdf The Mysteries of Monkey Island All Aboard to Take on the Pirates by Nicolas Deneschau
  • epub download Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage
  • 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-15 22:23:15
Previous
Deletes a pet
Built with