My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Hideaway A Novel by Hannah Alexander on Audiobook New
  • Read pdf The Count of Monte Cristo by Alexandre Dumas
  • PDF EPUB Download Swing by Audrey Meeker Sarah Davidson Full Book
  • PDF A Practical Partnership by Lily George
  • Read online De Lukov con amor From Lukov With Love by Mariana Zapata
  • Download Pdf Handbook of Children and Screens Digital Media Development and Well-Being from Birth
  • PDF Dungeons and Drama by Kristy Boyce
  • Online Read Ebook Gantz Omnibus Volume 4 by Hiroya Oku Matthew Johnson
  • PDF DOWNLOAD When God Speaks by Hunter Leonard William Meany on Iphone
  • Pdf ePub Marketing Rebellion The Most Human Company Wins by Mark W. Schaefer download ebook
  • Read online Los dos hemisferios de Lucca Luccas World by Bárbara Anderson
  • Pdf ePub NIV Lectio Bible A simple ancient way to read the library of Scripture Cloth over Board
  • download pdf Every Precious and Fragile Thing A Novel by Barbara Davis
  • PDF EPUB Download Twilight Deluxe Collectors Edition by Stephenie Meyer Full Book
  • download pdf Peculiar Baking A Practical Guide to Strange Confections by Nikk Alcaraz
  • pdf download Liberated The Radical Art and Life of Claude Cahun by Kaz Rowe
  • download pdf Reckless Spanish Edition Saga Powerless 2 by Lauren Roberts
  • DOWNLOAD PDF EPUB Luther First of the Fallen by Gav Thorpe
  • PDF Download Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori
  • Pdf ePub Imposible decir adiós We Do Not Part by Han Kang download ebook
  • Read online The Hidden Laws of Chess Mastering Pawn Structures by Nick Maatman
  • Online Read Ebook A Holiday Match by Belle Calhoune Lois Richer
  • Download Pdf Heavenly Tyrant Iron Widow Book 2 by Xiran Jay Zhao
  • Read online Rainbows After Storms Vol. 2 by Luka Kobachi
  • PDF Download Yarichin Bitch Club Vol. 5 by Ogeretsu Tanaka
  • epub download Komi Cant Communicate Vol. 31 by Tomohito Oda
  • Online Read Ebook Ghazghkull Thraka Prophet of the Waaagh by
  • Download PDF The National Parks Travelers Companion A Journal Featuring Bucket Lists Writing Prompt
  • epub download Neighbors and Other Stories by Diane Oliver Tayari Jones
  • epub download Build a Beautiful Business con Confianza Become Friends with Risk to Grow Scale and
  • PDF The Amish Midwifes Courtship by Cheryl Williford
  • PDF DOWNLOAD Sun Ssukgat The Korean Art of Self-Care Wellness Longevity by Michelle Jungmin Ban
  • PDF Kelly Wearstler Synchronicity by Kelly Wearstler Dan Rubinstein
  • epub download The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • Read online Siege of Vraks by Steve Lyons
  • PDF Download Spirited Away Film Comic All-in-One Edition by Hayao Miyazaki
  • Download PDF Game Theory Understanding the Mathematics of Life by Brian Clegg
  • Pdf ePub Grimm and Grimmer Classic Fairy Tales Rebooted by Mark Russell Alicja Kocurek download eb
  • Read Pdf An American in Paris A Novel by Margaret Vandenburg
  • My Side of the River A Memoir by Elizabeth Camarillo Gutierrez on Audiobook New
  • DOWNLOADS Suddenly Daddy and Suddenly Mommy by Loree Lough
  • PDF Lonely Planet Japan 18 by Lonely Planet
  • Pdf ePub The Signal by Samuel Stoterau download ebook
  • PDF Kindle Nothing Here Worth Dying For Task Force Lion in Iraq by Seth William Bell Folsom
  • PDF EPUB Download The Four Steps by Cam Locke Full Book
  • PDF EPUB Download Peerless Novel Vol. 3 by Meng Xi Shi Me.Mimo Full Book
  • Pdf ePub The Ice Guy and the Cool Girl 09 by Miyuki Tonogaya download ebook
  • PDF Kindle The Cleaner by Samantha Beal
  • download pdf The Adventures Of King Sugarman King Sugarmans Sweet Adventure by Jamie Knight
  • Read Pdf How to Disappear A Photographic Portrait of Radiohead by Colin Greenwood
  • 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-11 00:23:25
Previous
Deletes a pet
Built with