My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Kagurabachi Vol. 2 by Takeru Hokazono
  • Download Pdf The Mortal Instruments The Graphic Novel Vol. 5 by Cassandra Clare Cassandra Jean
  • pdf download USMLE Step 2 CK Lecture Notes 2024-2025 5-Book Clinical Review by Kaplan Medical
  • Online Read Ebook Bunburry - Episode 13-15 A Cosy Mystery Compilation by Helena Marchmont
  • PDF EPUB Download Sharing Body Heat by Lexie Davis Full Book
  • pdf download Ruthless Vows by Rebecca Ross
  • PDF DOWNLOAD Beach Cottage Kisses by Tara Taylor Quinn on Iphone
  • DOWNLOAD PDF EPUB Pornography Men Possessing Women by Andrea Dworkin
  • PDF Dont Want You Like a Best Friend A Novel by Emma R. Alban
  • pdf download Falling for the Single Dad by Lisa Carter
  • PDF Kindle The Art of Memory Collecting 15 Scrapbook Collage Trinket and Zine Projects For Crafti
  • PDF Download Jonty Gentoo The Adventures of a Penguin by Julia Donaldson Axel Scheffler
  • PDF EPUB Download Tokyo Revengers A Letter from Keisuke Baji Vol. 3 by Ken Wakui Yukinori Natsukawa
  • epub download Compromised into Marriage by Liz Tyner
  • Darkfever by Karen Marie Moning on Ipad
  • epub download Between the Pines by Amber Palmer
  • A Year of Living Curiously 365 Things Really Worth Knowing by Elizabeth Foley Beth Coates on Iphone
  • Rose in Chains by Julie Soto on Ipad
  • Download Pdf 7FATES CHAKHO Vol. 1 comic by HYBE BTS
  • PDF EPUB Download Obey Me The Comic Vol. 1 by Subaru Nitou NTT Solmare Full Book
  • Read online Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Changing Time
  • Black Holes The Key to Understanding the Universe by Brian Cox Jeff Forshaw on Iphone New Format
  • Read Pdf Way of the Warrior Kid III Where Theres a Will . . . by Jocko Willink Jon Bozak
  • Download PDF Everyone Is Lying An utterly gripping psychological thriller with a jaw-dropping twist
  • PDF EPUB Download Our Strange Endeavors by Riley Andrews Full Book
  • PDF EPUB Download The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano
  • PDF EPUB Download A Family for the Billionaire by Dani Wade Full Book
  • pdf download Builders of a Nation by Haifaa Younis
  • DOWNLOAD PDF EPUB They Call Me No Sam by Drew Daywalt Mike Lowery
  • Read pdf Thousand Autumns Qian Qiu Novel Vol. 1 by Meng Xi Shi Me.Mimo
  • PDF EPUB Download Rani Choudhury Must Die by Adiba Jaigirdar Full Book
  • PDF EPUB Download Over The Limit by K. Bromberg Full Book
  • Say Youll Remember Me by Abby Jimenez on Audiobook New
  • PDF DOWNLOAD White Liar by Tomo Serizawa on Iphone
  • Read pdf Home at Summers End by Alys Murray
  • PDF DOWNLOAD People the Planet Needs Now Voices for Justice Science and a Future of Promise by D
  • Bocchi the Rock Vol. 5 by Aki Hamazi on Ipad
  • pdf download Frankenstein Signature Classics by Mary Shelley
  • PDF The Hurricane Girls by Kimberly Willis Holt
  • PDF DOWNLOAD Boruto Two Blue Vortex Vol. 1 by Masashi Kishimoto Mikio Ikemoto on Iphone
  • Download PDF Murder in the Tea Leaves by Laura Childs
  • Pdf ePub The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle download eboo
  • Download Pdf Little Vic and the Great Mafia War by Larry McShane
  • Download Pdf Christmas on the Prairie by Frances Devine
  • PDF Download Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • Read Pdf The Last Guy On Earth by Sarina Bowen
  • PDF Kindle Rick Steves Belgium Bruges Brussels Antwerp Ghent by Rick Steves Gene Openshaw
  • Love Inspired Suspense March 2025 - Box Set 2 of 2 by Terri Reed Kellie VanHorn Susan Gee Heino on
  • download pdf Caldo de pollo para el alma Gracias mama 101 historias de gratitud amor y buenos tie
  • Read pdf The First Girl by Claire McGowan
  • 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 21:32:55
Previous
Deletes a pet
Built with