My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB The Art of Ready Player One by Gina McIntyre Ernest Cline Steven Spielberg
  • Online Read Ebook The Gain Principle Mastering Lifes Growth Cycles for Success and Service by Steve
  • Read Pdf The Princess and the Grilled Cheese Sandwich A Graphic Novel by Deya Muniz
  • Read pdf The Count of Monte Cristo by Alexandre Dumas
  • PDF EPUB Download Scent of Peril A Christian Romantic Suspense by Laura Scott Full Book
  • AI 2041 Ten Visions for Our Future by Kai-Fu Lee Chen Qiufan on Ipad
  • PDF Kindle My Name Was Eden A Novel by Eleanor Barker-White
  • Online Read Ebook The Tatami Time Machine Blues A Novel by Tomihiko Morimi Emily Balistrieri
  • Read pdf AWS Certified SysOps Administrator - Associate SOA-C02 Exam Cram by Marko Sluga Richard
  • The Wide Wide Sea Imperial Ambition First Contact and the Fateful Final Voyage of Captain James Coo
  • epub download Deify A Mythical Solo Role-Playing Game by Allyson DAntonio Maia Trewartha
  • pdf download The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the Key Ch
  • DOWNLOADS The First Girl by Claire McGowan
  • pdf download Play Along by Liz Tomforde
  • Download Pdf Crochet Sweaters with a Textured Twist 15 Timeless Patterns for Gorgeous Handcrafted Ga
  • DOWNLOAD PDF EPUB Whispered Curses by S D Gredell
  • La guarida del diablo Nora Kelly 3 by Douglas Preston Lincoln Child Efrén del Valle Peñamil on Ipa
  • Train Japan The Essential Rail Guide to Japan by Steve Wide Michelle Mackintosh on Ipad
  • PDF EPUB Download Indiscretion by VI Keeland Full Book
  • Read Pdf Villains Are Destined to Die Vol. 7 by SUOL AH Cho David Odell
  • PDF EPUB Download Picture Perfect Flash Using Portable Strobes and Hot Shoe Flash to Master Lighti
  • PDF Download El lamento de Sally Un giro inesperado Sallys Lament El extra o mundo de Jack by Ma
  • Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros on Iphone New Format
  • PDF EPUB Download The Marriage Portrait by Maggie OFarrell Full Book
  • Download Pdf Strength and Valor by Mary Ellen Porter Becky Avella
  • PDF Download Discovering Daniel Finding Our Hope in Gods Prophetic Plan Amid Global Chaos by Amir
  • Download Pdf Clarion Call by Cayla Fay
  • The Right Stuff by Tom Wolfe Robin Sloan on Ipad
  • Download Pdf You with a View by Jessica Joyce
  • DOWNLOAD PDF EPUB Talk to Strangers The Yes Theory Story by Matt Dahlia Derin Emre
  • PDF EPUB Download Come Fly with Me A Novel by Camille Di Maio Full Book
  • Plain Secrets by Kit Wilkinson on Ipad
  • DOWNLOADS A Common-Sense Guide to Data Structures and Algorithms Second Edition Level Up Your Core
  • The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard on Iphone New Format
  • DOWNLOAD PDF EPUB A Dragon of Black Glass by James Rollins
  • Read online Strange Pictures A Novel by Uketsu Jim Rion
  • PDF DOWNLOAD This Is Strategy Make Better Plans by Seth Godin on Iphone
  • Read pdf Guarding the Witness by Laura Scott Heather Woodhaven
  • Pdf ePub Una historia divertida by Emily Henry download ebook
  • PDF DOWNLOAD The Champ is Here by Nathan Dragon on Iphone
  • Read Pdf Beyond Art Fundamentals by 3dtotal Publishing
  • PDF EPUB Download To Sicily with Love by Jennifer Probst Full Book
  • PDF DOWNLOAD Something in the Walls A Novel by Daisy Pearce on Iphone
  • pdf download Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • download pdf Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nath
  • Read Pdf Close Your Eyes and Count to 10 A Novel by Lisa Unger
  • PDF DOWNLOAD When She Unravels by Gabrielle Sands on Iphone
  • PDF EPUB Download Chachagoma Illustration Works by Chachagoma Full Book
  • PDF Kindle A Little Gaelic Kingdom by Tim Robinson
  • Download PDF Graphic Design For Everyone Understand the Building Blocks so You can Do It Yourself by
  • 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-11 21:37:55
Previous
Deletes a pet
Built with