My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Amish Marriage Bargain by Marie E. Bast download ebook
  • Download Pdf The Outlaws Second Chance by Angie Dicken
  • Download PDF Twilight Out of Focus 6 Long Take Part 2 by Jyanome
  • PDF Download Monotone Blue by Nagabe
  • Pdf ePub Dragonfall by L. R. Lam download ebook
  • Pdf ePub Masons Pediatric Sedation Outside of the Operating Room A Multispecialty International Col
  • PDF Kindle The Secret History of Audrey James A Novel by Heather Marshall
  • Download PDF Hollywood Hearts by Toni Logan
  • DOWNLOADS The Doloriad A Novel by
  • Download PDF A Christmas Carol by Charles Dickens John Leech
  • epub download I Will Teach You to Be Rich The Journal No Complicated Math. No More Procrastinating.
  • Read online A Trap for Cinderella by Sébastien Japrisot Helen Weaver
  • Read pdf Destined for the Cowboy by Justine Davis
  • Online Read Ebook Dangerous Amish Inheritance and Hidden in Amish Country by Debby Giusti Dana R. L
  • Read online Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola
  • Online Read Ebook A Cure for the Vet by Ann Roth Julie Benson
  • PDF DOWNLOAD The Crash by Kate Furnivall on Iphone
  • PDF EPUB Download The Measure A Novel by Nikki Erlick Full Book
  • Read pdf Aftermarket Afterlife by Seanan McGuire
  • PDF Kindle Season of Fire by Cidney Mayes
  • Pdf ePub A Crown So Silver by Lyra Selene download ebook
  • Name Her Holy by Aubrey Ennis on Iphone New Format
  • United States Currency by Kenneth E. Bressett Q David Bowers Patrick Perez on Iphone New Format
  • pdf download 365 Days of Drawing People by Lise Herzog
  • pdf download Stillness An Exploration of Japanese Aesthetics in Architecture and Design by Norm Arch
  • Online Read Ebook The Language of Remembering by Patrick Holloway
  • Bride Wanted by Renee Andrews on Ipad
  • Online Read Ebook Alas de hierro Empíreo 2 by Rebecca Yarros
  • Little Miracles Everywhere My Unorthodox Path to Holistic Veterinary Medicine by Marcie Fallek on Ip
  • Read online RSN Stitch Bank 200 Essential Embroidery Stitches by The Royal School of Needlework Sus
  • Out of Darkness by Alex Gray on Ipad
  • PDF The Wizard Novel by Shi Wu Uri
  • Crossplay Love Otaku x Punk Vol. 11 by Toru on Iphone New Format
  • PDF DOWNLOAD Wooing the Witch Queen by Stephanie Burgis on Iphone
  • Pdf ePub Rick Riordan Presents A Touch of Blood by Sajni Patel download ebook
  • 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
Previous
Deletes a pet
Built with