My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Diary of an 8-Bit Warrior Shadow Over Aetheria by Cube Kid on Audiobook New
  • PDF Kindle Big Sky Cowboy and Big Sky Daddy by Linda Ford
  • PDF El emprendedor 10 pasos para empezar o potenciar tu negocio The Entrepreneur. Ten Steps to St
  • PDF EPUB Download U-Joints A Taxonomy of Connections by Andrea Caputo Anniina Koivu Full Book
  • Read pdf Wednesdays Child Stories by Yiyun Li
  • PDF EPUB Download Its Getting Hot in Here A Novel by Jane Costello Full Book
  • DOWNLOADS The End of Everything How Wars Descend into Annihilation by Victor Davis Hanson
  • The Lumumba Plot The Secret History of the CIA and a Cold War Assassination by Stuart A. Reid on Aud
  • PDF Download The World to Come by Robert Macfarlane Johnny Flynn Emily Sutton
  • Read online The Day I Left You A Novel by Caroline Bishop
  • Why Its OK to Be Amoral by Ronald de Sousa on Audiobook New
  • Read online Every Precious and Fragile Thing A Novel by Barbara Davis
  • Pdf ePub A Season of Love by Kim Watters download ebook
  • PDF DOWNLOAD Unassimilable An Asian Diasporic Manifesto for the Twenty-First Century by Bianca Mab
  • PDF DOWNLOAD Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis on Iphone
  • The Mind-Gut-Immune Connection Understanding How Food Impacts Our Mind Our Microbiome and Our Immu
  • Read Pdf The Dialogues Conversations about the Nature of the Universe by Clifford V. Johnson Fran
  • Raven of the Inner Palace Light Novel Vol. 7 by Kouko Shirakawa on Ipad
  • PDF EPUB Download Terms and Conditions by Lauren Asher Full Book
  • download pdf Adventure Time The Fionna and Cake Compendium Vol. 1 by Natasha Allegri N.D. Stevenso
  • Download Pdf Grimoire NieR Revised Edition NieR Replicant ver.1.22474487139... The Complete Guide by
  • Online Read Ebook Big Nate This Means War by Lincoln Peirce
  • epub download MOON KNIGHT BY JED MACKAY OMNIBUS GREG CAPULLO COVER by Jed MacKay Danny Lore Alessa
  • epub download Murdle Jr. Curious Crimes for Curious Minds Solve Your Way Through 40 Puzzle Mysteries
  • PDF DOWNLOAD How to Make Money An Ancient Guide to Wealth Management by Luca Grillo on Iphone
  • pdf download The Wrong Earth Dead Ringers by Tom Peyer Jamal Igle Juan Castro
  • PDF DOWNLOAD The Last Guy On Earth by Sarina Bowen on Iphone
  • Pdf ePub Speculative Light The Arts of Beauford Delaney and James Baldwin by Amy J. Elias download
  • PDF EPUB Download The Viscounts Unconventional Lady A Steamy Historical Romance Book by Virginia Hea
  • PDF Kindle A través de ti Through You by Ariana Godoy
  • DOWNLOAD PDF EPUB Why Its OK to Have Bad Spelling and Grammar by Jessica Flanigan
  • Download Pdf The Rhythm of Their Souls by L D Pack
  • Online Read Ebook So Im a Spider So What Vol. 15 light novel by Okina Baba Tsukasa Kiryu
  • download pdf Everyday Shakespeare Lines for Life by Ben Crystal David Crystal
  • pdf download Unraveling Your Relationship with Money Ditch Your Money Trauma So You Can Live an Abun
  • Pdf ePub Kingpin A Joe DeMarco Thriller by Mike Lawson download ebook
  • DOWNLOADS Brimstone Deluxe Limited Edition by Callie Hart
  • Chiron And The Healing Journey by Melanie Reinhart on Ipad
  • Pdf ePub CCNP Security Cisco Secure Firewall and Intrusion Prevention System Official Cert Guide
  • PDF DOWNLOAD A Dragon of Black Glass by James Rollins on Iphone
  • Read online El mar está lleno de medusas The Sea Is Full of Jellyfish by Paola Carola
  • Download Pdf The Prince and the Scribe by Logan Kelly
  • PDF EPUB Download The War Below Lithium Copper and the Global Battle to Power Our Lives by Ernest
  • DOWNLOADS Werewolf Hamlet by Kerry Madden-Lunsford
  • PDF Kindle Chicken Soup for the Soul Laughters Always the Best Medicine 101 Feel-Good Stories by Am
  • PDF Download The Coworker by Freida McFadden
  • Wall Poems by Mickey McKay on Audiobook New
  • PDF DOWNLOAD The Life Cycle of a CEO The Myths and Truths of How Leaders Succeed by Claudius A Hil
  • Read pdf Dawn of Grace Mary Magdalenes Story by Jill Eileen Smith
  • DOWNLOADS Its Getting Hot in Here A Novel by Jane Costello
  • 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-14 01:49:01
Previous
Deletes a pet
Built with