My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download More Tales from Fur After Dark by Eric W Schwartz
  • PDF Michael S. Smith Classic by Design by Michael S. Smith ANDREW FERREN Shonda Rhimes
  • Read pdf Survival Gardening Grow Your Own Emergency Food Supply from Seed to Root Cellar by Sam C
  • Pdf ePub Mais Áo Dài by Thai Nguyen Monique Truong Dung Ho download ebook
  • PDF DOWNLOAD Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein on Iphone
  • PDF Kindle Functional Limb Salvage The Multidisciplinary Team Approach by Christopher E. Attinger
  • The Apothecary Diaries Volume 13 Light Novel by Natsu Hyuuga Touko Shino Kevin Steinbach on Iphone
  • Download Pdf Human Acts by Han Kang Deborah Smith
  • download pdf Sword of the Titans by Kashidashiki
  • PDF Download Farther Than the Moon by Lindsay Lackey
  • Talent How to Identify Energizers Creatives and Winners Around the World by Tyler Cowen Daniel Gr
  • Pdf ePub Wargaming Campaigns by Henry Hyde download ebook
  • Online Read Ebook Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • Beach Read by Emily Henry on Iphone New Format
  • PDF Download Vampiros en El Norte Vampires of El Norte by Isabel Cañas
  • epub download Hard to Judge A Dark MMF Billionaire Romance by Meg Everly
  • PDF EPUB Download Promesas crueles by Rebecca Ross Full Book
  • Read pdf The Other March Sisters by Linda Epstein Ally Malinenko Liz Parker
  • DOWNLOADS Reign of the Seven Spellblades Vol. 8 manga by Bokuto Uno Sakae Esuno Ruria Miyuki And
  • Avatar The Last Airbender -- The Bounty Hunter and the Tea Brewer by Faith Erin Hicks Peter Wartman
  • download pdf Love is an Illusion - The Queen Vol. 2 by Fargo
  • Pdf ePub Japanese Joinery by Dorian Bracht download ebook
  • Download PDF How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorabl
  • PDF DOWNLOAD Burning Crowns by Catherine Doyle Katherine Webber on Iphone
  • PDF DOWNLOAD The Ultimate Intimacy Game for Couples Playful and Fun Would You Rather Questions by
  • PDF Tremendous The Life of a Comedy Savage by Joey Diaz Erica Florentine
  • DOWNLOAD PDF EPUB Adolescence Boy it by Aya Sakyou Yuzuki N
  • Penance by Kanae Minato on Iphone New Format
  • PDF Kindle Putins Exiles Their Fight for a Better Russia by Paul Starobin
  • pdf download The Way of Heaven and Earth From Either Or to the Catholic Both And by Matthew Becklo
  • epub download Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • PDF DOWNLOAD How Isnt It Going Conversations After October 7 by Delphine Horvilleur Lisa Appignan
  • PDF EPUB Download La tormenta Edición limitada cantos pintados The Reaper Limited Edition Spraye
  • PDF The Geoengineered Transhuman The Hidden Technologies of HAARP Chemtrails 5G 6G Nanotechnolog
  • Online Read Ebook A Tempest of Tea by Hafsah Faizal
  • pdf download Baby Let It Snow by Beverly Jenkins Elaine Overton
  • epub download Dance of Wings A Dark Paranormal Romance by Taylor Aston White
  • DOWNLOADS An Heir of Uncertainty by Alyssa Everett
  • Pdf ePub Twin Star Exorcists Vol. 33 Onmyoji by Yoshiaki Sukeno download ebook
  • DOWNLOADS The Dukes Only Desire by Anna Harrington
  • Download PDF DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel
  • Download Pdf Beyond the Wand The Magic and Mayhem of Growing Up a Wizard by Tom Felton
  • Read Pdf A Father in the Making by Marta Perry Deb Kastner
  • DOWNLOADS Arctic Heat A Forced Proximity LGBTQ Romance by Annabeth Albert
  • download pdf Yuri Tama From Third Wheel to Trifecta The Third by toshizou Kuro Shina Tristan K. H
  • Spectacular A Caraval Holiday Novella by Stephanie Garber Rosie Thorns on Iphone New Format
  • Read online Japanese Tattoos Meanings Shapes and Motifs by Yori Moriarty
  • DOWNLOAD PDF EPUB Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Chang
  • epub download Playgirl The Official History of a Cult Magazine by Playgirl Magazine
  • download pdf The Grand Scheme of Things A Novel by Warona Jay
  • 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