My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf The Grand Scheme of Things A Novel by Warona Jay
  • pdf download I Love You So Much Its Killing Us Both A Novel by Mariah Stovall
  • DOWNLOADS Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Konchog
  • DOWNLOAD PDF EPUB Godzilla The Official Cookbook by Kayce Baker
  • PDF Kindle Matzah and Flour Recipes from the History of the Sephardic Jews by Hélène Jawhara Piñer
  • PDF DOWNLOAD Masters of Uncertainty The Navy SEAL Way to Turn Stress into Success for You and Your
  • Read online The War of the Worlds by H. G. Wells
  • Rozando el cielo En el hockey y el amor todo vale Mile High by Liz Tomforde on Ipad
  • Los dos hemisferios de Lucca Luccas World by Bárbara Anderson on Ipad
  • Read Pdf We Are Voyagers Disney Moana 2 by RH Disney Disney Storybook Art Team
  • PDF Download Gears of War Ephyra Rising by Michael A. Stackpole
  • DOWNLOAD PDF EPUB Moral Treatment by Stephanie Carpenter
  • PDF EPUB Download Bocchi the Rock Vol. 5 by Aki Hamazi Full Book
  • PDF Kindle Name Her Holy by Aubrey Ennis
  • DOWNLOAD PDF EPUB The Ghosts of Rome The Rome Escape Line Trilogy 2 by Joseph OConnor
  • Download Pdf The Cat Who Cracked a Cold Case by L T Shearer
  • Read pdf Monster Hunter Vendetta by Larry Correia
  • Clown in a Cornfield by Adam Cesare on Ipad
  • PDF Kindle Normal Women Making history for 900 years by Philippa Gregory
  • download pdf Say Its Forever by A.L. Jackson
  • DOWNLOADS Flavour of Flight The Food and Drink of British Airways by Al Bridger
  • Read Pdf Eighteen A History of Britain in 18 Young Lives by Alice Loxton
  • PDF Lonely Planet Experience Andalucia by Anna Kaminski Fiona Flores Watson Isabella Noble
  • PDF EPUB Download Redemption Ranch by Leann Harris Full Book
  • PDF Assassins Creed Atlas by
  • epub download Well Always Have Summer by Jenny Han
  • DOWNLOADS Danes Mark by Lora Leigh
  • A Convenient Christmas Bride by Rhonda Gibson on Iphone New Format
  • PDF Download Oyster Perpetual Submariner The Watch that Unlocked the Deep by Nicholas Foulkes
  • 500 Patterns for Woodworking Laser Cutting and General Crafting Full-Size Plans by Fred Arndt on A
  • Read Pdf Ambessa Chosen of the Wolf A League of Legends Arcane Novel by C. L. Clark
  • Pdf ePub Earth Grids The Secret Patterns of Gaias Sacred Sites by Hugh Newman download ebook
  • Download Pdf Pansies by Alexis Hall
  • Self-Portrait in the Studio by Giorgio Agamben Kevin Attell on Audiobook New
  • pdf download Creepy Crafts 60 Macabre Projects for Peculiar Adults by Ashley Voortman
  • Download PDF Letters to the Human Race...from the Cat Feline frustrations about inferior species by
  • Diablo Tales from the Horadric Library A Short Story Collection by Adam Foshko Delilah S. Dawson M
  • Mission Christmas by Lindsay McKenna Susan Grant on Ipad
  • Download Pdf Meet the Neighbors Animal Minds and Life in a More-than-Human World by Brandon Keim
  • Read Pdf Astrology. the Library of Esoterica by Andrea Richards Susan Miller Jessica Hundley Th
  • PDF Kindle The Younger Woman A Novel by Cate Ray
  • pdf download Interesting Facts about Space A Novel by Emily Austin
  • PDF DOWNLOAD Whispers of the Heart by Ruth Scofield on Iphone
  • DOWNLOADS Jane Austens Bookshelf A Rare Book Collectors Quest to Find the Women Writers Who Shaped a
  • PDF DOWNLOAD A Kids Guide to Backyard Trees by Felicia Brower Nicole LaRue on Iphone
  • Read Pdf Roman Soldier vs Dacian Warrior Dacian Wars AD 85-106 by Murray Dahm Giuseppe Rava
  • DOWNLOADS Spectacular en español Caraval 4 - Ed. Coleccionista by Stephanie Garber
  • PDF Kindle Piety and Personality The Temperaments of the Saints by Rosemary McGuire Berry
  • epub download Her Best Friend the Duke by Laura Martin
  • Download Pdf I Am Money by Julia Cook Garrett Gunderson Josh Cleland
  • 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
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-11 03:43:15
Previous
Deletes a pet
Built with