My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Dahlia in Bloom Crafting a Fresh Start With Magical Tools Volume 8 by Hisaya Amagishi
  • Download Pdf Missed Connections by Justin Deubel
  • Online Read Ebook The Big Tease A Naughty and Nice Collection by Bruce Timm
  • PDF Download Venice and the Ottoman Empire A Tale of Art Culture and Exchange by Stefano Carboni
  • Millennial Hospitality by Charles James Hall on Audiobook New
  • Online Read Ebook Music Law How to Run Your Bands Business by Richard Stim Attorney
  • PDF DOWNLOAD Palestine in a World on Fire by Katherine Natanel Ilan Pappé on Iphone
  • Pdf ePub Grind Like a Grandmaster How to Keep Pressing until Your Opponent Cracks by Magnus Carlsen
  • epub download Aftermath Star Wars Aftermath Trilogy 1 by Chuck Wendig
  • PDF Download African Stories by Ben Okri
  • DOWNLOAD PDF EPUB The Art of Apex Legends by
  • Read pdf Down with the System A Memoir by Serj Tankian
  • Read online Woman of Wolves by Jess McFarlane
  • DOWNLOADS The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino Maebar
  • Read Pdf INCREDIBLE HULK VOL. 4 CITY OF IDOLS by Phillip Kennedy Johnson DANNY EARLS Nic Klein
  • epub download The Habitation Society Creating Sustainable Prosperity by Fred Block
  • The Mighty Marvel Dictionary An Illustrated Glossary from Avengers to X-Men by Robb Pearlman on Ipad
  • PDF Les Normaux A Graphic Novel by Janine Janssen S. Al Sabado
  • PDF EPUB Download The Way of the Golden Section A Manual of Occult Training by John Michael Greer Fu
  • PDF DOWNLOAD Thinking through Graphic Design History Challenging the canon by Aggie Toppins on Iph
  • The Bones Beneath My Skin by TJ Klune on Audiobook New
  • Download Pdf Good Golden Sun by Brendan Wenzel
  • Online Read Ebook Tessas Pride by Olivia Brynn
  • Read Pdf Women and Girls on the Autism Spectrum Second Edition Understanding Life Experiences fro
  • download pdf Today Tonight Tomorrow by Rachel Lynn Solomon
  • Read online An Honorable Mission by Laura Scott Shirlee McCoy
  • A Proposal Worth Millions by Sophie Pembroke on Ipad
  • PDF Kindle Red Book 2024 Report of the Committee on Infectious Diseases by David W. Kimberlin Eliz
  • PDF Kindle Look Up at The Moon by Karen Phillips Yuliana Simakovska
  • Download Pdf Piety and Personality The Temperaments of the Saints by Rosemary McGuire Berry
  • Sweet Tooth 100 Desserts to Save Room For A Baking Book by Sarah Fennel on Audiobook New
  • download pdf Gunnerkrigg Court Volume 1 Limited Edition by Tom Siddell
  • Read online Mistborn Secret History by Brandon Sanderson
  • Download PDF Bad Badger by Maryrose Wood Giulia Ghigini
  • PDF Kindle Nothing Serious A Novel by Emily J. Smith
  • pdf download The Crash by Kate Furnivall
  • PDF Download My Noisy Roommate The Roof Over My Head Comes With Monsters and a Hottie 2 by Kaho Oz
  • PDF Download An Accidental Hero by Loree Lough
  • Read Pdf 3 Doughs 60 Recipes Focaccia Pizza Sandwich Bread - Easy-to-master Doughs and Deliciou
  • DOWNLOADS Daylight by Ila Sikorski
  • PDF EPUB Download All Is Found A Frozen Anthology by Disney Books Full Book
  • download pdf Forgotten Civilization New Discoveries on the Solar-Induced Dark Age by Robert M. Scho
  • epub download Different Gender Through the Eyes of a Primatologist by Frans de Waal
  • DOWNLOAD PDF EPUB Healing Through Words by Rupi Kaur
  • PDF EPUB Download Art of Invincible Season 1 by Marc Sumerak Robert Kirkman Full Book
  • Bosss Heir Demand by Jackie Ashenden on Audiobook New
  • PDF Kindle Weird Walk Wanderings and Wonderings through the British Ritual Year by Weird Walk Stew
  • Pdf ePub Anxiously Attached Becoming More Secure in Life and Love by Jessica Baum download ebook
  • download pdf Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU
  • PDF EPUB Download What a Run Inside the Philadelphia Eagles Unforgettable 2024 Championship Season
  • 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 22:28:01
Previous
Deletes a pet
Built with