My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle The Bones Beneath My Skin by TJ Klune
  • epub download Sally Face Art Lore and More by Steve Gabry
  • Read pdf Pretty Delicious Simple Modern Mediterranean Served with Style A Cookbook by Alia Elkaf
  • download pdf Fruiting Bodies Stories by Kathryn Harlan
  • DOWNLOAD PDF EPUB The Wrong Way to Use Healing Magic Volume 5 Light Novel by Kurokata
  • Good Golden Sun by Brendan Wenzel on Ipad
  • Pdf ePub A Home for Unusual Monsters by Shaun David Hutchinson download ebook
  • download pdf Wilderness Hostage by Janice Kay Johnson
  • PDF DOWNLOAD You Never Know A Memoir by Tom Selleck Ellis Henican on Iphone
  • PDF EPUB Download Kama-Sutra Una postura para cada dia by DK Full Book
  • DOWNLOADS The Fine Art of Erections by Gruenholtz
  • PDF DOWNLOAD Pokémon Scarlet Violet Vol. 1 by Hidenori Kusaka Satoshi Yamamoto on Iphone
  • download pdf Satans Affair by H. D. Carlton
  • download pdf Lobster and other things Im learning to love by Hollie McNish
  • PDF Seaforth World Naval Review 2025 by Conrad Waters
  • PDF Download The Governesss Scandalous Marriage by Helen Dickson
  • DOWNLOADS A Disaster of Our Own Making How the West Lost Ukraine by Brandon J. Weichert
  • PDF EPUB Download The Pale Flesh of Wood A Novel by Elizabeth A. Tucker Full Book
  • DOWNLOAD PDF EPUB Oaths and Omissions Deluxe Edition by Sav R. Miller
  • PDF EPUB Download Drawn Together Studio DB Architecture and Interiors by Britt Zunino Damian Zunino
  • Read pdf I May Be a Guild Receptionist but Ill Solo Any Boss to Clock Out on Time Vol. 4 light n
  • Download Pdf The Hellgate The Search for the Ancient Botanical to Save Humankind by Christopher Paul
  • Read online The Coworker by Freida McFadden
  • Forgotten Skills of Cooking 700 Recipes Showing You Why the Time-honoured Ways Are the Best by Darin
  • PDF DOWNLOAD Philosophy and Life Exploring the Great Questions of How to Live by A. C. Grayling on
  • Read Pdf Acts of Murder Murder in a Small Town by L.R. Wright
  • Download Pdf The Murder After the Night Before by Katy Brent
  • download pdf Si te gusta la oscuridad You Like It Darker by Stephen King
  • Read online Take Your Seat at the Table Live an Authentic Life of Abundance Wellness and Freedom b
  • One-Armed Jack Uncovering the Real Jack the Ripper by Sarah Bax Horton on Ipad
  • DOWNLOADS Batman The Animated Series Official Coloring Book by Insight Editions
  • PDF DOWNLOAD Michelle Yeoh A Little Golden Book Biography by Angela Song Irene Chan on Iphone
  • Pdf ePub The Complete Nonsense Books De-luxe Edition by Edward Lear download ebook
  • PDF Ballparks and Baseball Sticker Logbook Track Your Trips to Every Major Baseball Ballpark Hist
  • Halfway to Hell by William W. Johnstone J. A. Johnstone on Iphone New Format
  • Download Pdf The Will of the Many by James Islington
  • pdf download Sun Ssukgat The Korean Art of Self-Care Wellness Longevity by Michelle Jungmin Bang
  • Read Pdf Never Planned on You A Novel by Lindsay Hameroff
  • PDF EPUB Download A Boy Named Rose by Gaelle Greniller Gaelle Geniller Full Book
  • DOWNLOAD PDF EPUB Dungeons Dragons Worlds Realms Adventures from Greyhawk to Faerûn and Beyond b
  • Read pdf You Dont Need to Forgive Trauma Recovery on Your Own Terms by Amanda Ann Gregory LCPC
  • PDF EPUB Download The City and Its Uncertain Walls A Novel by Haruki Murakami Philip Gabriel Full
  • PDF EPUB Download Between Never and Forever by Shain Rose Full Book
  • PDF EPUB Download Better Than the Movies by Lynn Painter Full Book
  • PDF EPUB Download Management of a Novice Alchemist Volume 4 by Mizuho Itsuki fuumi Sean McCann F
  • Download Pdf Machine Learning for Physics and Astronomy by Viviana Acquaviva
  • Download Pdf The Salmon Who Dared to Leap Higher by Ahn Do-hyun
  • Read online Children of Anguish and Anarchy Gleißendes Herz Der US-Bestseller auf Deutsch by Tomi Ad
  • Read Pdf Follow Her Heart by Marta Perry
  • PDF DOWNLOAD Private Revolutions Four Women Face Chinas New Social Order by Yuan Yang on Iphone
  • 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-15 08:32:51
Previous
Deletes a pet
Built with