My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD The Villainess and the Demon Knight Light Novel Vol. 2 by Nekota Asahiko on Iphone
  • The Curse of Sins by Kate Dramis on Audiobook New
  • epub download Stay by Valerie Kapp
  • Read online Groo In the Wild by Sergio Aragonés Mark Evanier Stan Sakai Carrie Strachan
  • PDF Kindle Danes Mark by Lora Leigh
  • epub download The Worlds Fastest Level Up Manga Vol. 4 by Nagato Yamata Atsushi Suzumi Fame
  • PDF EPUB Download Ill Have What Shes Having by Chelsea Handler Full Book
  • PDF Download Starting Point 1979-1996 by Hayao Miyazaki
  • DOWNLOAD PDF EPUB Cat People A Comic Collection by Hannah Hillam
  • PDF Download Hideaways More Art from Iraville by Ira Sluyterman van Langeweyde AKA Iraville 3dtot
  • PDF DOWNLOAD Blue Skies A Novel by T. C. Boyle on Iphone
  • Download PDF Charles Dowdings Skills For Growing Sowing Spacing Planting Picking Watering and Mo
  • Deep End by Ali Hazelwood on Audiobook New
  • DOWNLOADS Shes Just Like Me by Jamika Banks
  • Someone to Trust and Her Forbidden Amish Love by Patricia Davids Jocelyn McClay on Audiobook New
  • Read Pdf The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol. 1 by X
  • pdf download Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Alex Aste
  • A Convenient Christmas Bride by Rhonda Gibson on Audiobook New
  • PDF EPUB Download The Night of the Scourge A Novel by Lars Mytting Full Book
  • PDF Kindle Dietrich Mateschitz Wings for People and Ideas Red Bull and Viktor Frankls search for me
  • Read pdf First Gen A Memoir by Alejandra Campoverdi
  • epub download A Flicker in the Dark A Novel by
  • Pdf ePub The Saga of Tanya the Evil Vol. 13 light novel Dum Spiro Spero Part 1 by Carlo Zen Shin
  • Read pdf Katie the Catsitter 4 The Purrfect Plan A Graphic Novel by Colleen AF Venable Stephanie
  • PDF Download Twilight Out of Focus 6 Long Take Part 2 by Jyanome
  • Download Pdf Accomplice to the Villain by Hannah Nicole Maehrer
  • Read online Relinquished Realms by Joaquïn Baldwin
  • PDF Kindle Inherit Your Freedom Break Generational Curses and Reclaim the Future God Has for You by
  • pdf download Occult Germany Old Gods Mystics and Magicians by Christopher McIntosh
  • DOWNLOAD PDF EPUB The Dain Curse by Dashiell Hammett
  • Read online The 48 Laws of Power Special Power Edition by Robert Greene Joost Elffers
  • DOWNLOAD PDF EPUB Hearing The Call by Nekesa Sepiwe
  • Walt Disneys Uncle Scrooge The Diamond Jubilee Collection by Carl Barks on Iphone New Format
  • Understanding Hamas And Why That Matters by Helena Cobban Rami G. Khouri Paola Caridi Jeroen Gunn
  • Pdf ePub Lethal Reunion by Lacey Baker download ebook
  • PDF DOWNLOAD Clash of Legions by Anthony Riches on Iphone
  • Pdf ePub Heart of the Shadow King by Sylvia Mercedes download ebook
  • PDF Kindle The Great God Pan by Arthur Machen
  • Holly A Belladonna Novella by Adalyn Grace on Ipad
  • Butterfly Swords by Jeannie Lin on Iphone New Format
  • pdf download Go Higher Five Practices for Purpose Success and Inner Peace by Big Sean Jay Shetty
  • Read pdf Magical Love A Romantasy Coloring Book Ethereal Romantic Fantasy Scenes to Color by Echo
  • download pdf The GHOST WHISKERERS by Thom Zahler Sandy King
  • PDF EPUB Download Scattergood by H. M. Bouwman Full Book
  • DOWNLOAD PDF EPUB Texas Born by Diana Palmer
  • Download PDF Single Dating Engaged Married Navigating Life and Love in the Modern Age by Ben Stua
  • Download Pdf Metamorphoses Translated by Stephanie McCarter by Stephanie McCarter Ovid
  • PDF EPUB Download Prometeo Americano American Prometheus by Kai Bird Martin J. Sherwin Full Boo
  • Read Pdf React Key Concepts - Second Edition An in-depth guide to Reacts core features by Maximili
  • Online Read Ebook Tangled up in You A Meant to Be Novel by Christina Lauren
  • 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-15 09:12:40
Previous
Deletes a pet
Built with