My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF A Slash of Emerald by Patrice McDonough
  • Hungerstone by Kat Dunn on Audiobook New
  • epub download Whispered Curses by S D Gredell
  • Read pdf The Venture Mindset How to Make Smarter Bets and Achieve Extraordinary Growth by Ilya Str
  • PDF EPUB Download Three Bags Full by Leonie Swann Anthea Bell A. J. Finn Full Book
  • PDF Kindle FATELESS by Lindy Montgomery
  • Read online The Mentorship Edge Creating Maximum Impact through Lateral and Hierarchical Mentoring b
  • PDF Battle Royale Enforcers Vol. 1 by Koushun Takami Yukai Asada
  • Read pdf The Nativity Story by Juliet David Jo Parry
  • A Kingdom so Crimson by Emmory Jarman on Iphone New Format
  • Download Pdf After Annie by Anna Quindlen
  • PDF EPUB Download Short Game Mitsuru Adachis Baseball Short Story Collection by Mitsuru Adachi Full
  • DOWNLOADS Mission Christmas by Lindsay McKenna Susan Grant
  • The Saga of Tanya the Evil Vol. 13 light novel Dum Spiro Spero Part 1 by Carlo Zen Shinobu Shinot
  • DOWNLOAD PDF EPUB Deadly Equation An AJ Docker and Banshee Thriller by Gary Gerlacher
  • DOWNLOAD PDF EPUB RuneScape The Official Cookbook by Sandra Rosner Jarrett Melendez
  • pdf download Soma by Fernando Llor Carles Dalmau
  • PDF Ellie The Blue Elephant A Friend Like No Other by Mia Hendricks
  • The Librarianist by Patrick deWitt on Audiobook New
  • download pdf Heartless Special Edition by Elsie Silver
  • Online Read Ebook Acts of Desperation by Megan Nolan
  • PDF Her Christmas Fantasy The Winter Bride by Penny Jordan Lynne Graham
  • PDF Kindle Mated by Kerry Adrienne Sionna Fox Shari Mikels
  • PDF Kindle Beautiful Days Stories by Zach Williams
  • Download PDF Family of Convenience by Victoria Austin
  • Read Pdf The Land of the Living A Novel by Timothy Crellin
  • Read Pdf Cider with Rosie by Laurie Lee Simon Winchester
  • Ordinary Notes by Christina Sharpe on Audiobook New
  • PDF Download Whiteout A Thriller by R. S. Burnett
  • Read pdf Shipping Out Race Performance and Labor at Sea by Anita Gonzalez
  • download pdf Hideaways More Art from Iraville by Ira Sluyterman van Langeweyde AKA Iraville 3dtota
  • pdf download The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David
  • I Think Our Son Is Gay 05 by Okura on Ipad
  • PDF Download Blossom Origami by Clover Robin
  • Nothing to Hide 2. Young Men from Slovakia by Phil Dlab on Iphone New Format
  • Read pdf Dragon Hoops by Gene Luen Yang
  • Show Dont Tell Stories by Curtis Sittenfeld on Iphone New Format
  • pdf download The Book Against Death by Elias Canetti Peter Filkins Joshua Cohen
  • epub download Go Tell the Bees That I Am Gone by
  • PDF Every Last Breath by Jennifer L. Armentrout
  • PDF Diary of an 8-Bit Warrior Shadow Over Aetheria by Cube Kid
  • pdf download The Big Empty by Robert Crais
  • Read online When Things Dont Go Your Way Zen Wisdom for Difficult Times by Haemin Sunim Charles La
  • PDF DOWNLOAD Not in Love by Ali Hazelwood on Iphone
  • Into the Void From Birth to Black Sabbath - And Beyond by Geezer Butler on Iphone New Format
  • Online Read Ebook Chain of Iron by Cassandra Clare
  • Pdf ePub Free Agents How Evolution Gave Us Free Will by Kevin J. Mitchell download ebook
  • PDF Kindle A Trap for Cinderella by Sébastien Japrisot Helen Weaver
  • pdf download Level 1 Demon Lord and One Room Hero Vol. 7 by Toufu
  • epub download Crafting Leather Totes Backpacks Bags Detailed Patterns Step-by-Step Instructions f
  • 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:23:50
Previous
Deletes a pet
Built with