My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online The Starlight Heir A Novel by Amalie Howard
  • Read online Ghost Station by S.A. Barnes
  • Read online Holiday Homecoming A Soldier for Christmas by Jillian Hart
  • Online Read Ebook One Little Piggy by Annie Simpson Scott Barker
  • PDF EPUB Download Fagin the Thief A Novel by Allison Epstein Full Book
  • PDF EPUB Download Say Youll Remember Me by Abby Jimenez Full Book
  • DOWNLOAD PDF EPUB My Dear Detective Mitsukos Case Files Vol. 2 by Natsumi Ito
  • First Aid for the USMLE Step 1 2025 by Connie Qiu Anup Chalise Panagiotis Kaparaliotis Vikas Bhus
  • Read online Worlds End Harem Vol. 18 - After World by Link Kotaro Shono
  • PDF La riada The Flood by Michael McDowell Ph.D
  • Online Read Ebook A Batuu Adventure Star Wars Galaxys Edge by Jeneanne DeBois Bill Robinson
  • Powerless by Lauren Roberts on Audiobook New
  • PDF Kindle Jamie McGuire Beautiful Series Boxed Set Beautiful Disaster Walking Disaster and A Bea
  • Online Read Ebook Graffiti Alphabets Street Fonts from Around the World by Claudia Walde
  • Pdf ePub House of Fury by Evelio Rosero Victor Meadowcroft download ebook
  • PDF The Flower School The Principles and Pleasures of Good Flowers by Joseph Massie
  • PDF EPUB Download Star Trek Picard No Mans Land The Script of the Thrilling Original Audio Drama b
  • download pdf Dawn of Grace Mary Magdalenes Story by Jill Eileen Smith
  • PDF Kindle Violet Bent Backwards Over the Grass by Lana Del Rey
  • Read pdf Exhala Exhale by Gaby Vargas
  • The Marshals Mission by Anna Zogg on Iphone New Format
  • DOWNLOAD PDF EPUB The Cowboys Holiday Blessing and An Aspen Creek Christmas by Brenda Minton Roxa
  • Murder in the Tea Leaves by Laura Childs on Ipad
  • Read online More Tales from Fur After Dark by Eric W Schwartz
  • epub download The Woofmore on Thin Ice The Woofmore 3 by Donna Gephart Lori Haskins Houran Josh Cl
  • Take My Hand by Ruth Scofield on Audiobook New
  • PDF Kindle Elric of Melniboné The Elric Saga Part 1 by
  • Our Sweet Violet The third book in the Flower Girls collection from Britains best-loved saga author
  • PDF DOWNLOAD Castle Swimmer Volume 1 by Wendy Martin on Iphone
  • Download PDF Foundations of Computer Vision by Antonio Torralba Phillip Isola William T. Freeman
  • DOWNLOADS The Piece That Fits Special Edition by N. J. Gray
  • Download Pdf The Secret of The Fishing Box A reincarnation Mystery Across Lifetimes by Cleunir De Ar
  • Read pdf Dream of the Bird Tattoo Poems and Sueï½itos by Juan J Morales
  • Read Pdf Wild and Wrangled A Rebel Blue Ranch Novel by Lyla Sage
  • Download PDF The Last Days of Good People by A.T. Sayre
  • PDF EPUB Download Jeffrey Gitomers The Sales Bible The Ultimate Sales Resource by Jeffrey Gitomer
  • PDF EPUB Download The Curious Cases of Sherlock Holmes - Volume Three by Stephen Herczeg Full Book
  • Online Read Ebook Alfred Dreyfus The Man at the Center of the Affair by Maurice Samuels
  • DOWNLOADS I Cross-Dressed for the IRL Meetup 3 by Kurano
  • Pdf ePub The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for your
  • Download Pdf The Love Lyric by Kristina Forest
  • PDF Download The Matchmakers Match by Jessica Nelson
  • PDF Download Final Fantasy VII Remake Material Ultimania by
  • DOWNLOADS Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Dennis
  • DOWNLOAD PDF EPUB The Rule Book A Novel by Sarah Adams
  • download pdf Credence by Penelope Douglas
  • pdf download Whos Afraid of Gender by Judith Butler
  • DOWNLOADS Dont Eat the Cleaners Tiny Fish with a Big Job by Susan Stockdale
  • pdf download The Marigold Trail by Stefani Tanner
  • La profecía del dragón The Dragons Prophecy by Jonathan Cahn on Ipad
  • 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 22:13:10
Previous
Deletes a pet
Built with