My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Mangatopia Sea Creatures An Underwater Coloring Book of Anime and Manga by Liv Wan on Iphone New For
  • Pdf ePub The Adventures of Sherlock Holmes by Arthur Conan Doyle download ebook
  • DOWNLOAD PDF EPUB Cool for the Summer by Dahlia Adler
  • PDF DOWNLOAD Dark Hope by Christine Feehan on Iphone
  • PDF Kindle The Haunted Wood A History of Childhood Reading by Sam Leith
  • Download Pdf Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larmon Alf
  • PDF EPUB Download Predictive Astrology Tools to Forecast Your Life and Create Your Brightest Futur
  • The 100 Tactical Patterns You Must Know Workbook Practical Exercises to Spot the Key Chess Moves by
  • PDF EPUB Download Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenche
  • Read Pdf Travels Over Feeling Arthur Russell a Life by Richard King
  • THE CAT Clinical Medicine and Management by Susan E. Little DVM DABVP on Audiobook New
  • PDF EPUB Download Bold Beans recipes to get your pulse racing by Amelia Christie-Miller Full Book
  • Read pdf The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5 by Randy
  • PDF Hürtgen Forest 1944 1 The US First Armys Route to the Rhine by Michael McNally Darren Tan
  • PDF Download Brian by Jeremy Cooper
  • Online Read Ebook The Actor and The Space by Declan Donnellan
  • A Coupe of Thorns and Rosé Romantasy Cocktails to Quench Your Thirst A Cocktail Recipe Book by Pop P
  • PDF EPUB Download Never After The End of the Story by Melissa de la Cruz Full Book
  • PDF EPUB Download Witchcraft. The Library of Esoterica by Thunderwing Jessica Hundley Pam Grossman
  • Pathfinder Adventure Path It Came from Hollow Mountain Return of the Runelords 2 of 6 by Mike Shel o
  • Online Read Ebook Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramakri
  • pdf download Beautiful Things The Complete Manga Collection by Narise Konohara Nao Inui
  • DOWNLOADS Handbook of Children and Screens Digital Media Development and Well-Being from Birth Thr
  • PDF EPUB Download The Weaver and the Witch Queen by Genevieve Gornichec Full Book
  • Online Read Ebook Homecoming A Downeast Novel by Marie Force
  • pdf download The adidas Archive. The Footwear Collection. 40th Ed. by Christian Habermeier Sebastia
  • Read pdf Dinos Love Tractors by Pterry Redwing Christine Sheldon Cottage Door Press
  • Download Pdf Excuse Me While I Ugly Cry by Joya Goffney
  • Online Read Ebook The Forbidden Wolf King by Leia Stone
  • PDF EPUB Download Madd Ink by Dani René Full Book
  • DOWNLOAD PDF EPUB I Died for Beauty by Amanda Flower
  • Download Pdf Wings of Starlight by Allison Saft
  • pdf download Im a Behemoth an S-Ranked Monster but Mistaken for a Cat I Live as an Elf Girls Pet
  • Read pdf Mail-Order Mistletoe Brides Christmas Hearts Mistletoe Kiss in Dry Creek by Jillian Har
  • PDF EPUB Download Gwelf Into the Hinterlands by Larry MacDougall Full Book
  • Read online Duchess in the Attic Volume 3 by Mori Huyuko Aoi Yasuyuki Syuri piyo
  • Read pdf Los nombres de Feliza Felizas Names by Juan Gabriel Vásquez
  • Fruiting Bodies Stories by Kathryn Harlan on Ipad
  • Online Read Ebook The Ancient Art of Tasseography How to Read Tea Leaves and Coffee Grounds by Kylie
  • Pdf ePub Forgotten Skills of Cooking 700 Recipes Showing You Why the Time-honoured Ways Are the Bes
  • Online Read Ebook Desafiante Defiant by Brandon Sanderson
  • Download Pdf Montana Wrangler by Charlotte Carter
  • PDF Kindle Eros at Nadir by Mike Resnick
  • Read Pdf If I Must Die Poetry and Prose by Refaat Alareer Yousef M. Aljamal Susan Abulhawa
  • PDF DOWNLOAD The 24th Hour Is This The End by James Patterson Maxine Paetro on Iphone
  • PDF Pure Human The Hidden Truth of Our Divinity Power and Destiny by Gregg Braden
  • DOWNLOADS Feeding Ghosts A Graphic Memoir by Tessa Hulls
  • PDF EPUB Download A Dutiful Boy A Memoir of Secrets Lies and Family Love by Mohsin Zaidi Full Book
  • The Console Chronicles by Lost in Cult on Audiobook New
  • DOWNLOADS Code Name Arc Angel The Demise of The Devil by Bruce Jarvis
  • 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-14 00:04:01
Previous
Deletes a pet
Built with