My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Mothers Day MiracleBlessed Baby by Lois Richer
  • PDF Kindle New Scientific Evidence for the Existence of God by Jose Carlos Gonzalez-Hurtado
  • DOWNLOADS Engaged in Deception by Kim Lawrence
  • PDF EPUB Download The 5 Resets Rewire Your Brain and Body for Less Stress and More Resilience by Adi
  • Download Pdf Lascivia. Libro 1 Lascivious Book 1 by Eva Muñoz
  • Read Pdf The Urban Owls How Flaco and Friends Made the City Their Home by Christian Cooper Kriste
  • PDF DOWNLOAD Heart of the Shadow King by Sylvia Mercedes on Iphone
  • PDF EPUB Download Wicked The Life and Times of the Wicked Witch of the West by Gregory Maguire Full
  • PDF Scribbles Vol. 1 by Kaoru Mori William Flanagan
  • Read online Lobster and other things Im learning to love by Hollie McNish
  • Pdf ePub Ours for Halloween A Dark Monster Romance Novella by Violet Taylor download ebook
  • To Slip the Bonds of Earth A Riveting Mystery Based on a True History by Amanda Flower on Audiobook
  • PDF Code Noir Fictions by Canisia Lubrin Christina Sharpe
  • DOWNLOADS On Air with Zoe Washington by Janae Marks
  • Fatal Intrusion by Jeffery Deaver Isabella Maldonado on Audiobook New
  • Thriving Together Nine Principles for Cocreating True Community by David Viafora Sister True Dedica
  • download pdf Twilight Out of Focus 6 Long Take Part 2 by Jyanome
  • PDF Crooked Smile What It Took to Escape a Decade of Homelessness Addiction Crime by Jared Klick
  • DOWNLOAD PDF EPUB They Call Me No Sam by Drew Daywalt Mike Lowery
  • PDF EPUB Download Running in Flip-Flops From the End of the World by Justin A. Reynolds Full Book
  • Online Read Ebook Borderlands Debt or Alive by Anthony Burch
  • Read pdf Medieval Syria and the Onset of the Crusades The Political World of Bilad al-Sham 1050-11
  • DOWNLOAD PDF EPUB Teach Like a Champion 3.0 63 Techniques that Put Students on the Path to College
  • epub download Reverend Ike An Extraordinary Life of Influence by Mark Victor Hansen Xavier Eikerenk
  • Download PDF A Trap for Cinderella by Sébastien Japrisot Helen Weaver
  • download pdf Girl Forgotten by April Henry
  • download pdf Godblight by Guy Haley
  • PDF Download Street Fighter Swimsuit Special Collection by UDON Various
  • Batman Resurrection by John Jackson Miller on Iphone New Format
  • Download Pdf Un lugar feliz by Emily Henry
  • PDF EPUB Download Deep End by Ali Hazelwood Full Book
  • One Night with the Best Man by Amanda Berry on Audiobook New
  • PDF EPUB Download All the Bright Places Collectors Edition by Jennifer Niven Full Book
  • download pdf The Spear Cuts Through Water A Novel by Simon Jimenez
  • Playmaker A Hidden Attractions Novel by Deanna Faison on Ipad
  • Read Pdf PixlPeople Cross-Stitch Your Favorite People by John-Michael Stoof
  • Pdf ePub A Cold Dose of Murder by Emily George download ebook
  • Aurora A Novel by David Koepp on Iphone New Format
  • PDF A Tiny Piece of Blue A Novel by Charlotte Whitney
  • Read pdf The Rainfall Market by You Yeong-Gwang Slin Jung
  • Read Pdf The Woodpecker Method 2 by Axel Smith
  • Online Read Ebook MARVEL MASTERWORKS THE INVINCIBLE IRON MAN VOL. 18 by Dennis ONeil Marvel Various
  • Online Read Ebook Rigor Unveiled A Video-Enhanced Flipbook to Promote Teacher Expertise in Relations
  • PDF Kindle The Other Valley A Novel by Scott Alexander Howard
  • PDF Kindle Sword of the Demon Hunter Kijin Gentosho Light Novel Vol. 8 by Motoo Nakanishi
  • USMLE Step 1 Qbook by Kaplan Medical on Audiobook New
  • Download Pdf Quiero morir pero quiero comer tteokbokki by Baek Sehee
  • Online Read Ebook Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • Read Pdf Serotonin A Novel by Michel Houellebecq Shaun Whiteside
  • PDF EPUB Download Disquiet Gods by Christopher Ruocchio 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
Modified at 2025-06-09 22:22:15
Previous
Deletes a pet
Built with