My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Travels Through Middle Earth The Path of a Saxon Pagan by Alaric Albertsson on Iphone New Format
  • Online Read Ebook How to Corporate Proven Lessons for Winning at Work by Fela Abioye
  • PDF Gwendys Final Task by Stephen King Richard Chizmar
  • DOWNLOADS Shipping Out Race Performance and Labor at Sea by Anita Gonzalez
  • A Wolf in Sheeps Clothing A Wolf in Sheeps ClothingTell Me Your Secrets... by Joan Johnston on Iphon
  • Read online Understanding Palestine Israel by Phyllis Bennis Omar Baddar
  • Alien Covenant Davids Drawings by Dane Hallett Matt Hatton on Ipad
  • Online Read Ebook Treasure of Gor Gorean Saga 38 by John Norman
  • Pdf ePub A Beautiful Second Act Saints and Soul Sisters Who Taught Me to Be a Badass Age with Grace
  • Pdf ePub Dungeons Dragons Saturday Morning Adventures II by David M. Booher George Kambadais down
  • PDF DOWNLOAD The Deep Dark A Graphic Novel by Molly Knox Ostertag on Iphone
  • PDF EPUB Download Changemakers Wanted Your Blueprint for Lasting Impact and Ethical Change by Danaya
  • Read online Plus-Sized Elf Second Helping Vol. 4 by Synecdoche
  • PDF EPUB Download The Last Days of Good People by A.T. Sayre Full Book
  • PDF EPUB Download Plain Language Big Book A Tool for Reading Alcoholics Anonymous by Alcoholics Anon
  • Mini Philosophy A Small Book of Big Ideas by Jonny Thomson on Ipad
  • PDF DOWNLOAD Baphomet Revealed Mysteries and Magic of the Sacred Icon by Heather Lynn PhD on Iphon
  • Read online How to Build a Motorcycle A Nut-and-Bolt Guide to Customizing Your Bike by Laurence King
  • Jamie McGuire Beautiful Series Boxed Set Beautiful Disaster Walking Disaster and A Beautiful Weddi
  • download pdf The Folly of Realism How the West Deceived Itself About Russia and Betrayed Ukraine by
  • Read Pdf Pitcher Us by Mollie Goins
  • Download Pdf Why Its OK to Be Amoral by Ronald de Sousa
  • PDF Passage to Dawn Legacy of the Drow 4 Legend of Drizzt 10 by R. A. Salvatore
  • Pdf ePub Two Weddings and a Murder by Alyssa Maxwell download ebook
  • PDF EPUB Download Tome of Beasts 3 5E by Jeff Lee Richard Green Sarah Madsen Kelly Pawlik Full
  • PDF DOWNLOAD Hideaway A Novel by Hannah Alexander on Iphone
  • Read Pdf Shooting Star Coloring Book by Maria Trolle
  • Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru on Audiobook New
  • epub download GED Test Prep 2025 2026 For Dummies Book 3 Practice Tests Online by Tim Collins
  • Read pdf Wicca Magic A Handbook of Wiccan History Traditions and Rituals by Agnes Hollyhock
  • The Technological Republic Hard Power Soft Belief and the Future of the West by Alexander C. Karp
  • Online Read Ebook Beas Bad Day by Tom Percival
  • Klara and the Sun by Kazuo Ishiguro on Iphone New Format
  • DOWNLOAD PDF EPUB Fire in His Fingertips A Flirty Fireman Ravishes Me with His Smoldering Gaze Vol
  • Online Read Ebook The Capitalist Manifesto by Johan Norberg
  • Sebze Vegetarian Recipes from My Turkish Kitchen by Ozlem Warren on Iphone New Format
  • PDF DOWNLOAD The Fall of Númenor And Other Tales from the Second Age of Middle-earth by J. R. R. T
  • Online Read Ebook Atlantic Cataclysm Rethinking the Atlantic Slave Trades by David Eltis
  • DOWNLOADS Long Island by Colm Tóibín
  • DOWNLOADS The Best Advice from clowns On Dating by Libby K
  • The Legend of Zelda Tears of the Kingdom - The Complete Official Guide Collectors Edition by Piggyba
  • The Books of Clash Volume 3 Legendary Legends of Legendarious Achievery by Gene Luen Yang Kendall G
  • epub download Hands-On Large Language Models Language Understanding and Generation by Jay Alammar M
  • PDF Make Change That Lasts BW Illustrations 9 Simple Ways to Break Free from the Habits That Hold Y
  • PDF DOWNLOAD Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham o
  • PDF Kindle Vagabondo by Paul Freeman
  • Download Pdf When One World Ends Another Begins by Nathaniel Luscombe
  • Online Read Ebook Introducción a la psicología by Paul Kleinman
  • PDF EPUB Download The Science of Beauty Debunk the Myths and Discover What Goes into Your Beauty R
  • epub download Disney Twisted-Wonderland The Official Art Book by Square Enix
  • 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 21:08:15
Previous
Deletes a pet
Built with