My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Old Gods New Enigmas Marxs Lost Theory by Mike Davis download ebook
  • Family of Her Dreams by Keli Gwyn on Ipad
  • Read Pdf Understanding Palestine Israel by Phyllis Bennis Omar Baddar
  • DOWNLOAD PDF EPUB On Arrows Essays in British Architecture and Its Environments by Laurent Stalder
  • PDF Wicked The Life and Times of the Wicked Witch of the West by Gregory Maguire
  • Read online Asadora Vol. 8 by Naoki Urasawa
  • PDF I Got Abducted by Aliens and Now Im Trapped in a Rom-Com by Kimberly Lemming
  • PDF EPUB Download Mirror Mirror by Christina Nolte Full Book
  • Read pdf Come My Fanatics A Journey into the World of Electric Wizard by Dan Franklin
  • Read online DD Dungeon Masters Guide 2024 by Wizards of the Coast
  • epub download Pathfinder RPG Guns Gears Remastered P2 by Michael Sayre Mark Seifter Logan Bonner
  • Download PDF You Are Fatally Invited A Novel by Ande Pliego
  • Kairos by Jenny Erpenbeck Michael Hofmann on Audiobook New
  • Download PDF We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson
  • PDF EPUB Download The First Girl by Claire McGowan Full Book
  • Read pdf The Extraterrestrial Species Almanac The Ultimate Guide to Greys Reptilians Hybrids an
  • Read pdf The Dragonet Prophecy Limited Edition Wings of Fire Book One by Tui T. Sutherland
  • PDF DOWNLOAD Fate Kaleid Liner Prisma Illya The Complete Manga Collection by Hiroshi Hiroyama Typ
  • Read pdf Return to the Isle of the Lost The Graphic Novel by Melissa de la Cruz Robert Venditti
  • Download PDF Were So Blessed Forty Days of Devotions and Activities for the Whole Family by CAIN Ja
  • Download Pdf La invención de todas las cosas The Invention of All Things by Jorge Volpi
  • pdf download The Pool by Hannah Tunnicliffe
  • DOWNLOADS The Official Heartstopper Coloring Book by Alice Oseman
  • PDF EPUB Download Season of Fire by Cidney Mayes Full Book
  • Download PDF Parachute Kids A Graphic Novel by Betty C. Tang
  • Game of Thrones The Costumes the official book from Season 1 to Season 8 by Michele Clapton Gina M
  • The Dukes Only Desire by Anna Harrington on Audiobook New
  • pdf download Deck the Halls and His Christmas Bride by Arlene James Dana Corbit
  • PDF DOWNLOAD The Diaries of Franz Kafka by Franz Kafka Ross Benjamin on Iphone
  • PDF DOWNLOAD Girlmode by Magdalene Visaggio Paulina Ganucheau on Iphone
  • PDF DOWNLOAD The Official Yellowstone Bar Book 75 Cocktails to Enjoy after the Works Done by Lex T
  • Read pdf La novia gitana The Gypsy Bride by Carmen Mola
  • Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Kendrick Kim La
  • The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze on Audiobook New
  • PDF DOWNLOAD The Strange Case of Jane O. A Novel by Karen Thompson Walker 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
Modified at 2025-06-12 22:48:15
Previous
Deletes a pet
Built with