My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Magnolia Parks Into the Dark by Jessa Hastings Full Book
  • Download Pdf OZ A Fantasy Role-Playing Setting by Andrew Kolb
  • Download Pdf Oh The Poles Youll Climb Celebrating LineMen and the Kids Who Keep Them Going by Linec
  • Online Read Ebook Influencing Death Reframing Dying for Better Living by Penny Hawkins Smith
  • DOWNLOAD PDF EPUB A Family for Christmas by Irene Brand Dana Corbit
  • PDF Kindle The Pocket Butlers Guide to Good Housekeeping Expert Advice on Cleaning Laundry and Hom
  • Download PDF Lonely Castle in the Mirror Manga Vol. 1 by Mizuki Tsujimura Tomo Taketomi
  • pdf download Trophies and Scars Ray Evernham by Ray Evernham Joe Garner Jeff Gordon
  • PDF Kindle Karl Lagerfeld A Fashion History by MARIE OTTAVI
  • Download Pdf ReZERO -Starting Life in Another World- Vol. 26 light novel by Tappei Nagatsuki Shini
  • God of Ruin A Dark College Romance by Rina Kent on Audiobook New
  • Read online Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Joseph
  • download pdf Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone L
  • PDF EPUB Download Beyond Darning Creative mending techniques by Hikaru Noguchi Full Book
  • Download Pdf The World of David Morris The London Jeweler by ANNABEL DAVIDSON Phoebe Morris Cecily
  • PDF EPUB Download Wild and Wrangled A Rebel Blue Ranch Novel by Lyla Sage Full Book
  • DOWNLOADS The Great God Pan by Arthur Machen
  • pdf download Rebel Rising A Memoir by Rebel Wilson
  • Download PDF Holly A Belladonna Novella by Adalyn Grace
  • PDF EPUB Download Tying the Knot with an Amagami Sister 8 by Marcey Naito Full Book
  • PDF EPUB Download The Spoils by Colin Thompson Full Book
  • PDF Kindle Pony Confidential by Christina Lynch
  • On Thin Ice by Jessica Kim on Iphone New Format
  • Read pdf Out of the Cocoon The Journey to Becoming by Rosemary Esehagu
  • DOWNLOADS The Dreams We Knew A Novel of the Roaring Twenties by Rachel Scott McDaniel
  • PDF EPUB Download Last Stand of the Stone Fist A Songs of Chaos Novella by Michael R. Miller Full
  • pdf download Elric of Melniboné The Elric Saga Part 1 by
  • Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ardis D.C. on Audiobook
  • PDF EPUB Download The Other Side A Story of Women in Art and the Spirit World by Jennifer Higgie F
  • The Parent Plan Part 2 by Paula Detmer Riggs on Audiobook New
  • Download Pdf The Summer I Turned Pretty by Jenny Han
  • PDF Download Satoshi Kon Paprika Storyboard Book by Satoshi Kon
  • Download PDF Never Too Small Reimagining Small Space Living by Joel Beath Elizabeth Price
  • The Magpie at Night The Complete Poems of Li Qingzhao 1084-1151 by Li Qingzhao Wendy Chen on Iphone
  • American Spirits by Russell Banks on Ipad
  • Download Pdf A Thanksgiving to Remember by Margaret Watson
  • 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