My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook Chaos Theory Volume One The Junior Novelization Jurassic World by Steve Behling
  • PDF Download Ours for Halloween A Dark Monster Romance Novella by Violet Taylor
  • PDF EPUB Download Sleep Like a Polar Bear by Kyle Richard Olson Full Book
  • Online Read Ebook Beasts of War by Ayana Gray
  • PDF Beyond Darning Creative mending techniques by Hikaru Noguchi
  • The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talking About by Mel Robb
  • Pdf ePub Cree en los sueños y ellos te crearán Believe in Dreams and They Will Create You by Alb
  • PDF David Hamilton Twenty Five Years of an Artist by David Hamilton
  • PDF Acts of Murder Murder in a Small Town by L.R. Wright
  • Online Read Ebook The Epic A Very Short Introduction by Anthony Welch
  • epub download Never Planned on You A Novel by Lindsay Hameroff
  • PDF Download Mated by Kerry Adrienne Sionna Fox Shari Mikels
  • DOWNLOAD PDF EPUB SHEMP The Biography of The Three Stooges Shemp Howard The Face of Film Comedy b
  • pdf download Wolves in Sheeps Clothing A Ponzi Scheme Victims Story by Pat Dougherty
  • Download PDF Herbal Formularies for Health Professionals Volume 5 Immunology Orthopedics and Otol
  • PDF DOWNLOAD Living Design The Writings of Clara Porset by Clara Porset Zoë Ryan Valentina Sarmi
  • DOWNLOADS Dahlia in Bloom Crafting a Fresh Start With Magical Tools Volume 8 by Hisaya Amagishi Kei
  • Online Read Ebook Lions Do Not Bow The Unbreakable Courage of Canadas Pastor by Artur Pawlowski
  • epub download Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham
  • download pdf Missing Person Alice The Finder Mysteries by Simon Mason
  • PDF The Unofficial Super Mario Cookbook by Tom Grimm
  • PDF Kindle The Immortal by S. R. Finch
  • PDF Famous Last Words A Novel by Gillian McAllister
  • PDF DOWNLOAD My Dear Detective Mitsukos Case Files Vol. 2 by Natsumi Ito on Iphone
  • Online Read Ebook A Little Gaelic Kingdom by Tim Robinson
  • PDF Kindle Jardín de las delicias El by José Luis de Villar Iglesias
  • Download Pdf Aesops Fables A New Translation by Aesop Robin Waterfield
  • PDF DOWNLOAD Nightwing Vol. 3 The Battle for Blüdhavens Heart by Tom Taylor Bruno Redondo on Ipho
  • download pdf The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S
  • DOWNLOADS Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros
  • Christmas on the Prairie by Frances Devine on Iphone New Format
  • Download Pdf The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • Online Read Ebook Ill Have What Shes Having by Chelsea Handler
  • PDF EPUB Download 1984 by George Orwell Full Book
  • DOWNLOADS The Land of the Living A Novel by Timothy Crellin
  • PDF EPUB Download Our Strange Endeavors by Riley Andrews Full Book
  • epub download Tailchasers Song by Tad Williams
  • DOWNLOADS Marvel Studios Character Encyclopedia Updated Edition by Kelly Knox Adam Bray
  • pdf download Pure Excess Capitalism and the Commodity by Todd McGowan
  • DOWNLOAD PDF EPUB But What Will People Say Navigating Mental Health Identity Love and Family Be
  • Read Pdf Two Weddings and a Murder by Alyssa Maxwell
  • DOWNLOADS The Marshals Mission by Anna Zogg
  • PDF DOWNLOAD Togetha by Keith F. Miller Jr. on Iphone
  • PDF DOWNLOAD A Mistaken Match by Whitney Bailey on Iphone
  • Read Pdf Three Worlds Memoirs of an Arab-Jew by Avi Shlaim
  • Read online Marry Me Mackenzie by Joanna Sims
  • Download PDF Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • A Chance to Heal by Vannetta Chapman Rebecca Kertz on Iphone New Format
  • download pdf Shoegaze by Ryan Pinkard
  • Read online The Spirit of Hope by Byung-Chul Han Daniel Steuer
  • 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