My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF The Cake Bible 35th Anniversary Edition by Rose Levy Beranbaum Woody Wolston Ron Ben
  • PDF EPUB Download Angel Tarot Pocket Edition by Travis McHenry Full Book
  • Read pdf A Theory of Dreaming Deluxe Limited Edition by Ava Reid
  • PDF The Spoils by Colin Thompson
  • PDF DOWNLOAD Bath Time Fish by Adam Gamble Mark Jasper on Iphone
  • PDF EPUB Download 100 Years of Planetaria 100 Stories of People Places and Devices by Matthew McMa
  • Justice Society of America vol. 2 Long Live The JSA by Geoff Johns Mikel Janin on Iphone New Format
  • DOWNLOADS All or Nothing The Authorized Story of Steve Marriott by Simon Spence
  • PDF DOWNLOAD The Seven Husbands of Evelyn Hugo A Novel by Taylor Jenkins Reid on Iphone
  • DOWNLOADS Deep Cuts A Novel by Holly Brickley
  • PDF DOWNLOAD Second Arakan 1943-44 Shattering the Myth of Japanese Invincibility in Burma by Tim M
  • Finding Hayes by Laura Pavlov on Audiobook New
  • PDF The Last Guy On Earth by Sarina Bowen
  • Download PDF All You Need Is Love The Beatles in Their Own Words Unpublished Unvarnished and Told
  • download pdf 2028 Tomorrow is the Day by L R OBrien
  • The Order Labyrinth of Twisted Games by Logan St Clair on Iphone New Format
  • Hillbilly Highway The Transappalachian Migration and the Making of a White Working Class by Max Fras
  • DOWNLOAD PDF EPUB The Lore of Pluto Reshaping the Void by Steve Judd
  • Download PDF Aerin Lauder Living with Flowers by Aerin Lauder
  • epub download Babylonia A Novel by Costanza Casati
  • Read pdf How to Be a Childrens Book Illustrator A Guide to Visual Storytelling by Publishing 3dtot
  • PDF EPUB Download Brimstone Deluxe Limited Edition by Callie Hart Full Book
  • Online Read Ebook Dryfire Fundamental Shooting Techniques for Training at Home by Ben Stoeger Andre
  • Read online No Strings by Cara Lockwood
  • Thank You Teacher by Supriya Kelkar on Iphone New Format
  • Read Pdf Playground by Aron Beauregard
  • download pdf A Fortunes Redemption by Stella Bagwell
  • Pdf ePub RSN Stitch Bank 200 Essential Embroidery Stitches by The Royal School of Needlework Susan
  • Download PDF Tailspin by John Armbruster
  • Pdf ePub How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorable a
  • Pdf ePub The Trading Game A Confession by Gary Stevenson download ebook
  • PDF Missing Baby Doe by B. J. Daniels
  • Online Read Ebook Lets Eat Paris The Essential Guide to the Worlds Most Famous Food City by Fran ois
  • pdf download The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • The Four Horsemen Food and Wine for Good Times from the Brooklyn Restaurant by Nick Curtola Gabe Ul
  • pdf download A Thanksgiving to Remember by Margaret Watson
  • epub download One Message Remains by Premee Mohamed
  • PDF Kindle One Little Piggy by Annie Simpson Scott Barker
  • epub download Oh the Places Youll Go by Dr. Seuss
  • Read online What Lurks Between the Fates by Harper L. Woods
  • Download Pdf Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell
  • DOWNLOAD PDF EPUB Butts A Backstory by Heather Radke
  • Read Pdf Reflections of an Invisible Duck by Geigan C. Locke
  • Pdf ePub A Couple Cooks 100 Recipes to Cook Together by Sonja Overhiser Alex Overhiser Shelly Wes
  • download pdf Play Nice The Rise Fall and Future Of Blizzard Entertainment by Jason Schreier
  • PDF EPUB Download Bone Pendant Girls by Terry S. Friedman Full Book
  • Mother Love Murder in a Small Town by L.R. Wright on Ipad
  • PDF Puzzled 4 Murder by J. C. Eaton
  • AP Calculus Premium 2025 Prep Book with 12 Practice Tests Comprehensive Review Online Practice by
  • PDF EPUB Download Radical Go-Go Baby by Bosshi Full Book
  • 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