My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Hot Singles in Your Area by Jordan Shiveley
  • 10x Is Easier Than 2x How World-Class Entrepreneurs Achieve More by Doing Less by Dan Sullivan Benj
  • PDF DOWNLOAD The Classic Tale of Peter Rabbit The Deluxe Pop-Up Edition Interactive Fun With Peter
  • Read pdf End of August A Novel by Paige Dinneny
  • PDF EPUB Download Beyond Painting by Max Ernst Full Book
  • Online Read Ebook Love After Midnight A Novel by Sister Souljah
  • PDF EPUB Download Communication Systems Engineering with GNU Radio A Hands-on Approach by Jean-Mic
  • The Reincarnation of the Strongest Exorcist in Another World Volume 3 by Kiichi Kosuzu Yuunagi Jar
  • DOWNLOAD PDF EPUB Caring for Your Baby and Young Child 8th Edition Birth to Age 5 by American Aca
  • Online Read Ebook Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos
  • DOCTOR WHO MONSTROUS BEAUTY TP by Jacqueline Rayner Scott Gray Dan Abnett Gareth Roberts Colin A
  • PDF Crocheted Bees Bugs Butterflies by Vanessa Mooncie
  • PDF DOWNLOAD Punk 57 by Penelope Douglas on Iphone
  • Read Pdf Bordeaux The Smart Travellers Wine Guide by Georgie Hindle
  • Download PDF Reset How to Change Whats Not Working by Dan Heath
  • pdf download Her Own Rules Dangerous to Know by Barbara Taylor Bradford Barbara Taylor Bradford
  • Read online Ballad of Sword and Wine Qiang Jin Jiu Novel Vol. 1 by Tang Jiu Qing St
  • Pdf ePub Relaxed Coastal Style by Sally Denning download ebook
  • PDF DOWNLOAD The Survivor Wants to Die at the End by Adam Silvera on Iphone
  • Plus-Sized Elf Second Helping Vol. 3 by Synecdoche on Iphone New Format
  • So I Lied A Thriller by Chelsea Ichaso on Iphone New Format
  • Read pdf Never Pay the First Bill And Other Ways to Fight the Health Care System and Win by Marsha
  • epub download Hal by Amanda Berlind
  • Download Pdf Credence by Penelope Douglas
  • DOWNLOAD PDF EPUB Beneath the Trees Where Nobody Sees by Patrick Horvath
  • PDF EPUB Download Playground A Novel by Richard Powers Full Book
  • pdf download Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • Read pdf Survival Gardening Grow Your Own Emergency Food Supply from Seed to Root Cellar by Sam C
  • Read Pdf Quality by Design A Clinical Microsystems Approach Edition 2 by Marjorie M. Godfrey Ti
  • PDF EPUB Download Secret Vendetta A Dark Revenge Romance by Kathy Lockheart Full Book
  • Dark Harvest by Orna OReilly on Audiobook New
  • DOWNLOAD PDF EPUB These Deadly Prophecies by Andrea Tang
  • PDF EPUB Download The English Problem A Novel by Beena Kamlani Full Book
  • PDF DOWNLOAD Vinland Saga Deluxe 5 by Makoto Yukimura on Iphone
  • The Story Collector by Evie Woods on Audiobook New
  • 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