My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Preserving the Japanese Way Traditions of Salting Fermenting and Pickling for the Moder
  • Read Pdf 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparaiso
  • Download PDF Galway Confidential A Jack Taylor Novel by Ken Bruen
  • epub download World of Warcraft Exploring Azeroth Northrend Exploring Azeroth 3 by Alex Acks
  • DOWNLOADS Realism for Realistic People A New Pragmatist Philosophy of Science by Hasok Chang
  • DOWNLOAD PDF EPUB Pickleballers by Ilana Long
  • DOWNLOADS Omniscient Readers Viewpoint Vol. 2 by Sleepy-C UMI Hye Young Im J. Torres
  • The Wild Unknown Archetypes Deck and Guidebook by Kim Krans on Ipad
  • PDF DOWNLOAD Nightfall Travelers Leave Only Footprints Vol. 2 by Tomohi on Iphone
  • epub download The Lucky Ones A Memoir by Zara Chowdhary
  • Download Pdf Return of the Forbidden Tycoon by Penny Jordan
  • Read online Skills and Drills For Practical Shooting by Ben Stoeger Hwansik Kim
  • PDF Download 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valpara
  • pdf download Follow Her Heart by Marta Perry
  • Read online Remnants of Filth Yuwu Novel Vol. 4 by Rou Bao Bu Chi Rou St
  • Download Pdf Monster Hunter Memoirs Saints by Larry Correia John Ringo
  • Online Read Ebook Pete the Cat Rocks On Includes Over 30 Stickers by James Dean Kimberly Dean
  • Read online Cook Like a Real Italian Super Sexy and Simple Recipes from Cooking with Bello by Angelo
  • PDF EPUB Download Disappointing Affirmations by Dave Tarnowski Full Book
  • Pdf ePub Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Debray
  • Download PDF Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein
  • PDF Kindle The Vietnam War A Military History by Geoffrey Wawro
  • PDF EPUB Download Momo Arashima Duels the Queen of Death by Misa Sugiura Full Book
  • Online Read Ebook The Soldiers Surprise Family by Jolene Navarro
  • PDF DOWNLOAD The Throne of Broken Gods by Amber V Nicole on Iphone
  • Read Pdf A Slash of Emerald by Patrice McDonough
  • PDF Download Lastman Book 6 by Balak Michaïl Sanlaville Bastien Vives
  • DOWNLOAD PDF EPUB Un año con Dios al amanecer 365 devocionales para vivir el Padre Nuestro Awak
  • DOWNLOADS Salt Hank A Five Napkin Situation A Cookbook by Henry Laporte
  • Pdf ePub Love is an Illusion - The Queen Vol. 2 by Fargo download ebook
  • PDF Download Kick the Drink-Easily by Jason Vale
  • DOWNLOADS Tryst Six Venom by Penelope Douglas
  • Lou Reed The King of New York by Will Hermes on Ipad
  • PDF Kindle DK Australia by DK Travel
  • The Mere Wife A Novel by Maria Dahvana Headley on Audiobook New
  • Read Pdf Tiamats Wrath by James S. A. Corey
  • DOWNLOAD PDF EPUB The Crush by Ren Browne
  • PDF What Happens at the Beach. by Rachael Stewart
  • Mirror Mirror by Christina Nolte on Ipad
  • Handbook of Tyranny by Theo Deutinger on Audiobook New
  • download pdf Things I Wish I Told My Mother The Perfect Mother-Daughter Book Club Read by Susan Pat
  • Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley on Iphone New Format
  • Just Beyond the Light Making Peace with the Wars Inside Our Head by D. Randall Blythe on Ipad
  • Read Pdf Brimstone Deluxe Limited Edition by Callie Hart
  • download pdf The Discerning Gentlemans Guide A Historical Romance by Virginia Heath
  • Read online Martyr by Kaveh Akbar
  • PDF EPUB Download The Paris Dancer The emotional and inspiring historical novel to look out for in
  • Read online 2120 by George Wylesol
  • Download PDF Pesadilla en Navidad by Tessa Bailey
  • Online Read Ebook Fated Winds and Promising Seas A tender-hearted tale of forging fates fantastic c
  • 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-09 21:13:15
Previous
Deletes a pet
Built with