My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download The Adventures of Pinocchio A Pop-Up Book by Giordano Philip Hannah Porter Carlo Coll
  • Read Pdf Bunburry - Episode 13-15 A Cosy Mystery Compilation by Helena Marchmont
  • Online Read Ebook Bolt Action Third Edition World War II Wargames Rules by Warlord Games Peter Denn
  • DOWNLOAD PDF EPUB Handbook of Tyranny by Theo Deutinger
  • FAKE Fake Money Fake Teachers Fake Assets How Lies Are Making the Poor and Middle Class Poorer by
  • DOWNLOADS Visual Complex Analysis 25th Anniversary Edition by Tristan Needham Roger Penrose
  • Pdf ePub Love Inspired March 2025 Box Set - 1 of 2 by Emma Miller Allie Pleiter Linda Goodnight d
  • None of the Answers Racing Through Life in Reverse by Jeff Swaney on Ipad
  • An Authentic Life by Jennifer Chang on Audiobook New
  • Hungerstone by Kat Dunn on Ipad
  • PDF DOWNLOAD The Last Days of Good People by A.T. Sayre on Iphone
  • Read Pdf Machinerys Handbook and Digital Edition 31st Edition Toolbox Ed. by Erik Oberg
  • PDF Kindle Tied to You Vol. 4 by WHAT Micah Kim
  • Read Pdf Broken Flames by Mk Ahearn
  • PDF Kindle Lights Out An Into Darkness Novel by Navessa Allen
  • download pdf Breakthrough The Quest for Life-Changing Medicines by Dr William Pao
  • DOWNLOAD PDF EPUB Wolf Act by AJ Romriell
  • DOWNLOAD PDF EPUB Dial M for Ménage by Emily Ryan-Davis
  • PDF EPUB Download VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu Full Book
  • The Whole Time by Catherine Bybee on Audiobook New
  • PDF Download Wanted Big Game Library Edition by Mark Millar JG Jones Pepe Larraz
  • PDF EPUB Download The Ballad of Songbirds and Snakes by Suzanne Collins Full Book
  • epub download Data Mesh Delivering Data-Driven Value at Scale by
  • Read Pdf Strange Pictures A Novel by Uketsu Jim Rion
  • epub download Neuroanatomy through Clinical Cases by Hal Blumenfeld
  • DOWNLOAD PDF EPUB The Katharina Code by Jïrn Lier Horst
  • Pdf ePub Why Nothing Works Who Killed Progress-and How to Bring It Back by Marc J. Dunkelman downlo
  • PDF Download The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze
  • PDF EPUB Download The Art of Final Fantasy XVI by Square Enix Full Book
  • PDF A Theory of Dreaming Deluxe Limited Edition by Ava Reid
  • DOWNLOADS Quarrys Return Quarry by Max Allan Collins
  • PDF Lonely Planet Malta Gozo by Brett Atkinson
  • PDF The Hebridean Baker The Scottish Cookbook by Coinneach MacLeod
  • Read online More Days at the Morisaki Bookshop A Novel by Satoshi Yagisawa Eric Ozawa
  • Read online Deep End by Ali Hazelwood
  • Read Pdf Weird Walk Wanderings and Wonderings through the British Ritual Year by Weird Walk Stewa
  • PDF Book Boyfriend by Emily Wibberley Austin Siegemund-Broka
  • Greubel Forsey The Art of Invention by Michael Clerizo on Audiobook New
  • pdf download Easy Learning German Dictionary Trusted support for learning by Collins
  • Rick Steves Belgium Bruges Brussels Antwerp Ghent by Rick Steves Gene Openshaw on Audiobook New
  • epub download Her Honorable Enemy by Mary Davis
  • Read Pdf Designing Terry Pratchetts Discworld by Paul Kidby
  • pdf download Made for More by Chloe Ito Ward Gael Abary
  • Read online Stone Blind A Novel by Natalie Haynes
  • PDF EPUB Download Feigin and Cherrys Textbook of Pediatric Infectious Diseases 2-Volume Set by Jam
  • Download PDF The Geoengineered Transhuman The Hidden Technologies of HAARP Chemtrails 5G 6G Nanot
  • Read Pdf Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • PDF Pods by Shawn Winchell
  • download pdf Magical Love A Romantasy Coloring Book Ethereal Romantic Fantasy Scenes to Color by Ec
  • download pdf Bath Time Fish by Adam Gamble Mark Jasper
  • 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-11 22:01:55
Previous
Deletes a pet
Built with