My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Choking on Love Vol. 1 by Keiko Iwashita
  • PDF EPUB Download Long Island by Colm Tóibín Full Book
  • Tickle Spider Fingerplay for young children by Gaylene Wiseman on Ipad
  • High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves on Ipad
  • I Ship My Rival x Me The Comic Manhua Vol. 2 by PEPA Qualia on Audiobook New
  • Online Read Ebook Aurelia by Stephen R. Lawhead
  • DOWNLOADS Fatal Vision by Joe McGinniss
  • Read online Grave Empire by Richard Swan
  • epub download Fever Knights Role-Playing Game Powered by ZWEIHANDER RPG by Adam Ellis Daniel D. Fox
  • DOWNLOADS Dont You Dare Alternate Cover by CE Ricci
  • epub download Forward As Always by Olan Rogers Jake Sidwell Jim Krueger
  • Managing Up How to Move up Win at Work and Succeed with Any Type of Boss by Mary Abbajay on Audiob
  • PDF The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the Key Chess Move
  • DOWNLOAD PDF EPUB Trading Psychology For Dummies by Roland Ullrich
  • Download Pdf Lover Birds by Leanne Egan
  • PDF EPUB Download Forged by Speed The making of a mountain bike world champion by Steve Peat Tim Ma
  • pdf download The Childrens Home by Charles Lambert
  • DOWNLOADS With a Little Luck by Marissa Meyer Chuck Gonzales
  • download pdf The Muscle Ladder Get Jacked Using Science by Jeff Nippard
  • pdf download World Trigger Vol. 27 by Daisuke Ashihara
  • PDF EPUB Download Bonded in Death by J. D. Robb Full Book
  • Read Pdf Dandadan Vol. 11 by Yukinobu Tatsu
  • PDF EPUB Download One Grand Summer by Ewald Arenz Rachel Ward Full Book
  • Download PDF Fat Loss Habits The No Bullsht Guide to Losing Weight by Ben Carpenter
  • PDF DOWNLOAD The Light Eaters How the Unseen World of Plant Intelligence Offers a New Understandin
  • pdf download Apostles of Mercy by Lindsay Ellis
  • Pdf ePub Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by Julia Mur
  • download pdf The Essential Guide to Intermittent Fasting for Women Balance Your Hormones to Lose We
  • Pdf ePub Vajrayana and the Culmination of the Path by Dalai Lama Thubten Chodron download ebook
  • PDF Kindle The Menopause Brain New Science Empowers Women to Navigate the Pivotal Transition with K
  • PDF Kindle The Game Boy Encyclopedia Every Game Released for the Nintendo Game Boy and Game Boy Col
  • Read Pdf These Vengeful Wishes by Vanessa Montalban
  • DOWNLOADS Loving Someone with a Serious Mental Illness Caring for Your Loved One and Yourself on the
  • Read online Memories of Distant Mountains Illustrated Notebooks 2009-2022 by Orhan Pamuk Ekin Okla
  • Online Read Ebook Star Wars Visions Ronin A Visions Novel by Emma Mieko Candon
  • PDF Download When Kalis Collide Second Edition by Louis Cerbo
  • PDF EPUB Download Juniper Hill by Devney Perry Full Book
  • Read online Fearless by Lauren Roberts
  • download pdf The Cat Who Saved Books Gift Edition A Novel by Sosuke Natsukawa Louise Heal Kawai
  • Read Pdf The World War II Bond Campaign by Lawrence R. Samuel
  • Download PDF Proverbs For A Great Leader Good leadership by Lorenzo Jesus Serrano
  • DOWNLOADS The New Official LSAT Tripleprep Volume 5 by Law School Admission Council
  • The Worst Journey in the World Volume 1 Making Our Easting Down The Graphic Novel by Sarah Airriess
  • download pdf Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • download pdf Find Me as the Creature I Am Poems by Emily Jungmin Yoon
  • Pdf ePub Big Jim Begins by Dav Pilkey download ebook
  • The Deep Dark A Graphic Novel by Molly Knox Ostertag on Iphone New Format
  • Conclave by Robert Harris on Ipad
  • Mickey7 A Novel by on Iphone New Format
  • PDF DOWNLOAD Lore Olympus Volume Two by on Iphone
  • 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