My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Contrast in Crewel Embroidery Modern designs stitched on light and dark by Tatiana Pop
  • DOWNLOAD PDF EPUB A Mavericks Road Home by Catherine Mann
  • pdf download Glasses with a Chance of Delinquent Vol. 1 by Naruki
  • PDF Kindle Our Plastic Problem A Call for Global Solutions by Megan Durnford
  • epub download Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru
  • PDF EPUB Download Rick and Morty Meeseeks P.I. by Fred C. Stresing Meg Casey Crank Full Book
  • DOWNLOADS Stables Book 2 of the Black Gulch Ranch Series by M. A. Cobb
  • download pdf Plants vs. Zombies Volume 23 Zapped by Paul Tobin Christianne Gillenardo-Goudreau He
  • Online Read Ebook Boy Meets Maria by Peyo
  • Racing the Clouds by Sydney Dunlap on Iphone New Format
  • Read Pdf Fractured Freedom by Shain Rose
  • pdf download Almost Sunset by Wahab Algarmi
  • PDF Healthy Food for Healthy Kids 120 Simple Nourishing Gluten- and Dairy-Free Recipes Your Whole
  • pdf download Killer in Shellview County by R. Barri Flowers
  • PDF Download Harlequin Presents February 2025 - Box Set 2 of 2 by Carol Marinelli Natalie Anderso
  • PDF EPUB Download For Keeps by Marta Perry Full Book
  • PDF EPUB Download Fail-Safe Investing Lifelong Financial Security in 30 Minutes by Harry Browne Full
  • Read Pdf Cute Fantasy Art Class Mystical Anime Besties - Learn to Draw over 50 Charming Characters
  • PDF DOWNLOAD Always Be Your Baby by illustraice on Iphone
  • Download PDF The Wakanda Files A Technological Exploration of the Avengers and Beyond by Troy Benjam
  • Download PDF Fatal Freeze by Michelle Karl
  • Download Pdf A Dragon of Black Glass by James Rollins
  • Download Pdf Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie Souza
  • Read pdf A Love So Strong When Love Comes Home by Arlene James
  • A Haunt for Jackals by J. L. Odom on Iphone New Format
  • The Familiar by Leigh Bardugo on Ipad
  • PDF Download 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valpara
  • PDF Download Rebuilding Milo The Lifters Guide to Fixing Common Injuries and Building a Strong Fou
  • DOWNLOADS Heartstopper 5 A Graphic Novel by Alice Oseman
  • PDF Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell
  • PDF Yarrick The Omnibus by David Annandale
  • Read Pdf Encyclopaedia Eorzea The World of Final Fantasy XIV Volume III by Square Enix
  • pdf download Marmalade Boy Collectors Edition 5 by Wataru Yoshizumi
  • PDF Uxa.Gov by Blake Butler
  • pdf download Inheritance of Scars by Crystal Seitz
  • PDF Kindle The New Generation Crips and Folk Nation Bible The Inner Secrets of Knowledge Wisdom H
  • epub download Not Sure Who Needs to Hear This But . . . 100 Postcards with Beautiful Reminders for
  • pdf download Were So Blessed Forty Days of Devotions and Activities for the Whole Family by CAIN Ja
  • Pdf ePub Cute Fantasy Art Class Mystical Anime Besties - Learn to Draw over 50 Charming Characters
  • Download PDF Praiseworthy by Alexis Wright
  • PDF DOWNLOAD Preserving the Japanese Way Traditions of Salting Fermenting and Pickling for the M
  • DOWNLOAD PDF EPUB An American in Paris A Novel by Margaret Vandenburg
  • Download PDF The Coworker by Freida McFadden
  • PDF Kindle A Monsoon Rising The Hurricane Wars Book 2 by Thea Guanzon
  • epub download Enhancing Virtual Reality Experiences with Unity 2022 A practical guide to help develo
  • PDF EPUB Download The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal
  • PDF Kindle Magical Worlds An Enchanted Coloring Adventure by Johanna Basford
  • Indiscretion by VI Keeland on Iphone New Format
  • download pdf GRE Prep Plus 2024-2025 - Updated for the New GRE by Kaplan Test Prep
  • Read Pdf An Autobiography of Trauma A Healing Journey by Peter A. Levine
  • 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-11 22:47:01
Previous
Deletes a pet
Built with