My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS One Piece Vol. 107 by Eiichiro Oda
  • DOWNLOAD PDF EPUB Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécil
  • epub download Doctor Who The Eaters of Light Target Collection by Rona Munro
  • Read Pdf Hacia cero Novela policiaca y de misterio Towards Zero A Mystery and Detective Novel by
  • PDF Kindle A Theory of Dreaming Deluxe Limited Edition by Ava Reid
  • PDF EPUB Download Final Offer by Lauren Asher Full Book
  • Online Read Ebook Healing the Widowers Heart by Susan Anne Mason
  • Download PDF Parachute Kids A Graphic Novel by Betty C. Tang
  • PDF Kindle Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • Read Pdf Love Leda by Mark Hyatt
  • Little Vic and the Great Mafia War by Larry McShane on Ipad
  • Pdf ePub Defy Me by Tahereh Mafi download ebook
  • download pdf Hendrick Motorsports 40 Years NASCAR Racings Greatest Team Celebrates Four Decades by
  • PDF EPUB Download The Woman in Me Italian-language Edition by Britney Spears Full Book
  • Futuria Art of the Sci-Fi Age by Victionary on Ipad
  • DOWNLOAD PDF EPUB Truth Matters A Dialogue on Fruitful Disagreement in an Age of Division by Rober
  • The Official Heartstopper Coloring Book by Alice Oseman on Audiobook New
  • download pdf Failure Frame I Became the Strongest and Annihilated Everything With Low-Level Spells
  • Online Read Ebook Foul Play by Erin Kaste
  • DOWNLOAD PDF EPUB Casualties of Truth by Lauren Francis-Sharma
  • Listen to Your Heart by Irene Brand on Audiobook New
  • Justice Society of America vol. 2 Long Live The JSA by Geoff Johns Mikel Janin on Iphone New Format
  • PDF Download Chalk Wars Pommel Clock and the Incredulous Cost of Integrity by Patrick Sinclair
  • Read pdf Lote by Shola von Reinhold
  • Learn My Lesson Wicked Villains 2 by Katee Robert on Iphone New Format
  • Rose in Chains by Julie Soto on Iphone New Format
  • PDF EPUB Download Brimstone Deluxe Limited Edition by Callie Hart Full Book
  • PDF DOWNLOAD Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Changing T
  • pdf download The Why Is Everything A Story of Football Rivalry and Revolution by Michael Silver
  • download pdf Leo A Benny Griessel Novel by Deon Meyer
  • DOWNLOAD PDF EPUB Embracing Beauty Serene Spaces for Living by Beth Webb
  • PDF EPUB Download I Got Abducted by Aliens and Now Im Trapped in a Rom-Com by Kimberly Lemming Full
  • DOWNLOADS TSF Monogatari by Shindo L
  • Barrier Narrative by lubna A. Safi on Iphone New Format
  • DOWNLOAD PDF EPUB The Art of Joy A Novel by Goliarda Sapienza Anne Milano Appel Angelo Pellegrin
  • PDF DOWNLOAD Reckless by Elsie Silver on Iphone
  • PDF Trans Technologies by Oliver L. Haimson
  • Read pdf Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley P
  • PDF Download Reclaim the Street Street Photographys Moment by Stephen McLaren Matt Stuart
  • DOWNLOAD PDF EPUB Playgirl The Official History of a Cult Magazine by Playgirl Magazine
  • PDF Download The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madrid Fre
  • Read pdf Pleasure Principle Poems by Madeleine Cravens
  • epub download The Little Book of Tom. Blue Collar by Dian Hanson Tom of Finland
  • PDF Kindle Pink-pilled Women and the far right by Lois Shearing
  • download pdf The Last Days of Good People by A.T. Sayre
  • PDF EPUB Download The MANIAC by Benjamín Labatut Full Book
  • Winning His Manhattan Heiress by Lauri Robinson on Ipad
  • Simply the Best A Chicago Stars Novel by Susan Elizabeth Phillips on Audiobook New
  • PDF EPUB Download Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein
  • PDF EPUB Download Fiancée No More The Forsaken Lady the Prince and Their Make-Believe Love Volum
  • 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 23:31:55
Previous
Deletes a pet
Built with