My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Disposable Americas Contempt for the Underclass by Sarah Jones on Iphone
  • PDF Download Machine Vendetta by Alastair Reynolds
  • PDF DOWNLOAD Wild Houses by Colin Barrett on Iphone
  • DOWNLOADS Perras de reserva by Dahlia De la Cerda
  • download pdf House of Slaughter 30 by James Tynion IV Sam Johns Werther DellEdera Letizia Cadoni
  • download pdf A New Science of Heaven How the new science of plasma physics is shedding light on spi
  • Download PDF Jane Eyre Movie Tie-in Edition by Charlotte Brontë
  • Online Read Ebook Dragonfall by L. R. Lam
  • DOWNLOAD PDF EPUB Nada sucede la víspera by Chufo Lloréns
  • Read online Validation How the Skill Set That Revolutionized Psychology Will Transform Your Relation
  • Read pdf Plain Language Big Book A Tool for Reading Alcoholics Anonymous by Alcoholics Anonymous W
  • PDF DOWNLOAD The Crash by Freida McFadden on Iphone
  • Black Woman Grief A Guide to Hope and Wholeness by Natasha Smith Quantrilla Ard on Audiobook New
  • PDF DOWNLOAD Wolfsong Green Creek 1 by TJ Klune on Iphone
  • PDF EPUB Download The Temporary Mrs. Marchetti by Melanie Milburne Full Book
  • PDF Download Powerless by Lauren Roberts
  • DOWNLOADS Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Joseph L
  • epub download Heartsong Green Creek 3 by TJ Klune
  • The Little Book of Legs by Dian Hanson on Ipad
  • Read online The Case Files of Jeweler Richard Light Novel Vol. 9 by Nanako Tsujimura Utako Yukihiro
  • Download Pdf The End of August A Novel by Yu Miri Morgan Giles
  • Online Read Ebook Engaged in Deception by Kim Lawrence
  • PDF RAF Fighters vs Ju 87 Stuka In the West 1940-41 by Andy Saunders Gareth Hector Jim Laurier
  • Geiger Volume 2 The Nuclear Knight by Geoff Johns Gary Frank Brad Anderson on Audiobook New
  • Celestial Fates by S.L. Morales on Iphone New Format
  • Read Pdf Whats Your Favorite Color by Eric Carle
  • epub download La felicidad by Gabriel Rolón
  • Download PDF The Wager A Tale of Shipwreck Mutiny and Murder 2023 BN Author of the Year by David Gr
  • Read Pdf Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • DOWNLOAD PDF EPUB Unleash Your Financial Superpowers How the First-Generation Wealthy Do It and Ho
  • epub download How to Get Along with Anyone The Playbook for Predicting and Preventing Conflict at Wo
  • PDF EPUB Download The Disney Villains Cookbook by Disney Books Full Book
  • The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki Yamori on Ip
  • Read pdf True Failure by Alex Higley
  • PDF Download Fever Knights Role-Playing Game Powered by ZWEIHANDER RPG by Adam Ellis Daniel D. Fo
  • Bloodfever by Karen Marie Moning on Audiobook New
  • Download Pdf Old Gods New Enigmas Marxs Lost Theory by Mike Davis
  • PDF Kindle World Builders Technology and the New Geopolitics by Bruno Maïïes
  • Pdf ePub Wings of Fire The Official How to Draw by Tui T. Sutherland Brianna C. Walsh download ebo
  • PDF EPUB Download Terms and Conditions by Lauren Asher Full Book
  • epub download Hokkaido Recipes from the Seas Fields and Farmlands of Northern Japan by Tim Anderson
  • DOWNLOADS Love from Snoopy by Charles M. Schulz Maggie Testa Scott Jeralds
  • pdf download Avatar El camino del agua. Diccionario visual Avatar The Way of Water The Visual Dictio
  • Pdf ePub The Winter Soldier by Diana Palmer Delores Fossen download ebook
  • DOWNLOADS 100 Years of Planetaria 100 Stories of People Places and Devices by Matthew McMahon Ped
  • PDF Kindle Authoritarianism A Very Short Introduction by James Loxton
  • First Light A Novel by Liz Kerin on Audiobook New
  • Too Many Losing Heroines Light Novel Vol. 3 by Takibi Amamori Imigimuru on Audiobook New
  • Pdf ePub Arctic Knits Jumpers Socks Mittens and More by Weichien Chan download ebook
  • epub download Christina Riccis Cat Full of Spiders Tarot Deck and Guidebook by Christina Ricci Mine
  • 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-07 11:13:15
Previous
Deletes a pet
Built with