My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro
  • PDF Kindle The Ruthless Fae King - Die Chroniken von Avalier 3 Die TikTok-Romantasy-Sensation Ein e
  • Download PDF My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen on Audiobook New
  • Read online Iron Flame by Rebecca Yarros
  • download pdf The Understatement of the Year by Sarina Bowen
  • epub download Cuentos by Dan Henderson
  • PDF EPUB Download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang Full Book
  • PDF DOWNLOAD FATELESS by Lindy Montgomery on Iphone
  • PDF Kindle Handbook of Tyranny by Theo Deutinger
  • Read Pdf The Art of Prophecy A Novel by Wesley Chu
  • PDF Ghost Station by S.A. Barnes
  • DOWNLOAD PDF EPUB Things No One Taught Us About Love How to Build Healthy Relationships with Yours
  • epub download Annihilation Southern Reach Trilogy 1 by Jeff VanderMeer Karen Joy Fowler
  • PDF EPUB Download The Violent Take It by Force by Matthew D. Taylor Full Book
  • download pdf My Name Was Eden A Novel by Eleanor Barker-White
  • Just for the Summer by Abby Jimenez on Audiobook New
  • PDF EPUB Download Ander Santi Were Here A Novel by Jonny Garza Villa Full Book
  • PDF EPUB Download Reset How to Change Whats Not Working by Dan Heath Full Book
  • Pdf ePub The Worlds Most Boring Chess Book The Isolated d-Pawn in the Endgame by Ian Rogers Laszlo
  • DOWNLOADS The Forever Dog Life 120 Recipes Longevity Tips and New Science for Better Bowls and Hea
  • PDF EPUB Download Welcome to Demon School Iruma-kun 11 by Osamu Nishi Full Book
  • Read Pdf Silk A World History by Aarathi Prasad
  • The White House Physician A History from George Washington to Joe Biden 2d ed. by Ludwig M. Deppisc
  • Pdf ePub A Childs War by Patrick Walsh Prithvi Singh download ebook
  • PDF DOWNLOAD Amy Winehouse Beyond Black by Naomi Parry on Iphone
  • epub download A Childs War by Patrick Walsh Prithvi Singh
  • DOWNLOADS The Penguin Vol 2 All Bad Things by Tom King Rafael De Latorre
  • Online Read Ebook Close Your Eyes and Count to 10 A Novel by Lisa Unger
  • PDF EPUB Download The Secrets We Hide by Berlin Wick Full Book
  • Pdf ePub I Was Reincarnated as the 7th Prince so I Can Take My Time Perfecting My Magical Ability 1
  • Download PDF Whiskey Tender A Memoir by Deborah Taffa
  • DOWNLOAD PDF EPUB Educating for Equity and Excellence Enacting Culturally Responsive Teaching by G
  • PDF DOWNLOAD Microdosing for Health Healing and Enhanced Performance by James Fadiman PhD Jorda
  • DOWNLOADS Go Tell the Bees That I Am Gone 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
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-14 04:01:50
Previous
Deletes a pet
Built with