My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download A Western Christmas Homecoming by Lynna Banning Lauri Robinson Kathryn Albright
  • epub download My Husband A Novel by Maud Ventura Emma Ramadan
  • Shadow of the Tomb Raider - Path of the Apocalypse by S. D. Perry on Iphone New Format
  • Read online Good Girl A Novel by Aria Aber
  • Pdf ePub The Math Book From Pythagoras to the 57th Dimension by Clifford A. Pickover download ebook
  • Read pdf Analysis through Action for Actors and Directors From Stanislavsky to Contemporary Perfor
  • PDF Only Rainbows by Karen C McCord
  • PDF DOWNLOAD Why Does It Snow Weather with The Very Hungry Caterpillar by Eric Carle on Iphone
  • DOWNLOAD PDF EPUB DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • Download Pdf Maria Theresa Empress The Making of the Austrian Enlightenment by Richard Bassett
  • DOWNLOADS Reign of the Seven Spellblades Vol. 8 manga by Bokuto Uno Sakae Esuno Ruria Miyuki And
  • DOWNLOAD PDF EPUB A Dangerous Past by Susan Gee Heino
  • PDF Kindle Honey Lemon Soda Vol. 8 by Mayu Murata Amanda Haley
  • Download Pdf The Cowboys Easter Surprise An Uplifting Inspirational Romance by Jill Kemerer
  • Download Pdf The Will of the Many by James Islington
  • Download PDF Failure Frame I Became the Strongest and Annihilated Everything With Low-Level Spells L
  • DOWNLOAD PDF EPUB Into the Great Wide Ocean Life in the Least Known Habitat on Earth by Sönke John
  • Read Pdf Free Ride Heartbreak Courage and The 20 000-Mile Motorcycle Journey That Changed My Lif
  • PDF Kindle All the Light We Cannot See by Anthony Doerr
  • pdf download Be More Moo Deng The Unofficial Coloring Book by DK
  • Pdf ePub Asesino de brujas - Vol. 2. Los hijos del rey - Ed. Coleccionista by Shelby Mahurin downlo
  • Download PDF Time Expansion Experiences The Psychology of Time Perception and the Illusion of Linear
  • PDF Download Say Youll Remember Me by Abby Jimenez
  • Download Pdf Plunder Private Equitys Plan to Pillage America by Brendan Ballou
  • PDF Kindle The Lost Journals of Sacajewea A Novel by Debra Magpie Earling
  • Alter Ego 2 Noel June by Ana C. Sánchez on Ipad
  • Read online Penitence A Novel by Kristin Koval
  • Online Read Ebook Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU on Audiobook New
  • DOWNLOAD PDF EPUB Shelterwood by Lisa Wingate
  • download pdf Vampire State The Rise and Fall of the Chinese Economy by Ian Williams
  • download pdf Captive on the High Seas by Christina Rich
  • Online Read Ebook Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Alex
  • An Unlikely Love by Dorothy Clark on Audiobook New
  • PDF I Hope This Finds You Well A Novel by Natalie Sue
  • Online Read Ebook Marvel Anatomy A Scientific Study of the Superhuman by Marc Sumerak Jonah Lobe D
  • PDF EPUB Download Peter Sutcliffe The Full Crimes of The Yorkshire Ripper by Chris Cook Full Book
  • Life Drawing A Love and Rockets Collection by Jaime Hernandez on Audiobook New
  • Read online Her Holiday Protector and Holiday on the Run by Lenora Worth Laura Scott
  • epub download Knightmare Arcanist by Shami Stovall
  • PDF The Enemys Daughter by Anne Blankman
  • PDF Kindle Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone Lis
  • PDF EPUB Download Twisted Una historia de Nunca Jamás by Emily McIntire Cristina Macía Orio Full Bo
  • Read online Purposeful Practice for Poker The Modern Approach to Studying Poker by Dr. Patricia Card
  • Pdf ePub This Book Is Gay by Juno Dawson David Levithan download ebook
  • Download Pdf Recovering from Purity Culture Dismantle the Myths Reject Shame-Based Sexuality and M
  • Read Pdf Trained to Protect by Terri Reed
  • Pdf ePub Cree en los sueños y ellos te crearán Believe in Dreams and They Will Create You by Alb
  • Download Pdf The Authorized P-Funk Song Reference Official Canon of Parliament-Funkadelic 1956-2023
  • pdf download Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by Julia
  • 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-10 21:53:15
Previous
Deletes a pet
Built with