My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Dead By Dusk by Eleanor Hill
  • The Amish Christmas Secret and The Amish Widows Christmas Hope by Vannetta Chapman Carrie Lighte on
  • download pdf Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone L
  • Pdf ePub The Big Book of Watercolor The Must-Have Guide to Painting by Mallery Jane download ebook
  • PDF EPUB Download Unlocking the Keto Code The Revolutionary New Science of Keto That Offers More B
  • Online Read Ebook National Geographic Traveler Japan 7th Edition by National Geographic
  • PDF The Bounty Hunters Redemption by Janet Dean
  • Free Ride Heartbreak Courage and The 20 000-Mile Motorcycle Journey That Changed My Life by Noraly
  • PDF Download Balan Wonderworld Maestro of Mystery Theatre of Wonders by Square Enix Soshi Kawasa
  • PDF Kindle The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • DOWNLOADS El gato que venía del cielo The Guest Cat by Takashi Hiraide
  • Pdf ePub Return of the Forbidden Tycoon by Penny Jordan download ebook
  • PDF EPUB Download Forward As Always by Olan Rogers Jake Sidwell Jim Krueger Full Book
  • pdf download Sophies World A Novel About the History of Philosophy 30th Anniversary Edition by Joste
  • Read online The Fermentation Kitchen Recipes and Techniques for Kimchi Kombucha Koji and More. by
  • Read Pdf Spider-Man No Way Home The Art of the Movie by Jess Harrold
  • Download Pdf Hot Springs Drive by Lindsay Hunter
  • Read online The Düngeonmeister RPG Sticker Book 500 Stickers to Level Up Your Campaign by Jef Aldric
  • PDF EPUB Download Sallys Lament A Twisted Tale by Mari Mancusi Full Book
  • epub download Boys in the Valley by Philip Fracassi
  • Read pdf Cher Part One The Memoir by Cher
  • DOWNLOADS Enchantra by Kaylie Smith
  • download pdf Stuart Woods Smolder by Brett Battles
  • Download Pdf Decolonizing Palestine The Land The People The Bible by Mitri Raheb
  • pdf download The House of Beckham Money Sex and Power by Tom Bower
  • download pdf Chalk Wars Pommel Clock and the Incredulous Cost of Integrity by Patrick Sinclair
  • PDF Download Billionaires Bargain by Maureen Child
  • PDF EPUB Download Your Soul Had a Dream Your Life Is It How to Be Held by Life When It Feels Like
  • PDF EPUB Download Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larm
  • Pdf ePub Tying the Knot with an Amagami Sister 8 by Marcey Naito download ebook
  • Read Pdf Los nombres de Feliza Felizas Names by Juan Gabriel Vásquez
  • PDF Kindle 3 Shades of Blue Miles Davis John Coltrane Bill Evans and the Lost Empire of Cool by
  • Read Pdf Every Single Secret by Christina Dodd
  • epub download Compromised into Marriage by Liz Tyner
  • download pdf Heartsong Green Creek 3 by TJ Klune
  • 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-09 01:07:30
Previous
Deletes a pet
Built with