My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taishi on Ipad
  • Read pdf Konrad Curze The Night Haunter by Guy Haley
  • Read Pdf Well Always Have Summer by Jenny Han
  • Download Pdf I Got Abducted by Aliens and Now Im Trapped in a Rom-Com by Kimberly Lemming
  • Online Read Ebook Boy Vs. Beast 2 Rock Beast by Mac Park
  • Read Pdf Broken Flames by Mk Ahearn
  • PDF Download Networking Essentials Companion Guide v3 Cisco Certified Support Technician CCST Netw
  • Download PDF Lonely Planet Pocket Barcelona by Isabella Noble
  • epub download After-Hours Proposal by Trish Morey
  • PDF Heart of the Shadow King by Sylvia Mercedes
  • epub download Wall Poems by Mickey McKay
  • DOWNLOAD PDF EPUB Code Name Arc Angel The Demise of The Devil by Bruce Jarvis
  • DOWNLOAD PDF EPUB The Dixon Rule by Elle Kennedy Bianca Dyck
  • DOWNLOADS The Sender A Story About When Right Words Make All The Difference by Kevin Elko Bill Beus
  • PDF Maya Natasha A Novel by Elyse Durham
  • DOWNLOADS Post-Europe by Yuk Hui
  • PDF Abraham Lincoln A Life by Michael Burlingame Jonathan W White
  • World of Warcraft The Dragonflight Codex A Definitive Guide to the Dragons of Azeroth by Sandra Rosn
  • DOWNLOAD PDF EPUB The EACVI Textbook of Cardiovascular Magnetic Resonance by Victor Ferrari Massi
  • Read online Wargaming Campaigns by Henry Hyde
  • pdf download The End of the Moment We Had by Toshiki Okada Samuel Malissa
  • download pdf Small Wars Manual Poems by Chris Santiago
  • The Other March Sisters by Linda Epstein Ally Malinenko Liz Parker on Audiobook New
  • Download PDF iPad for Seniors in easy steps Covers all models with iPad OS 18 by Nick Vandome
  • PDF EPUB Download La mujer de arriba The Wife Upstairs by Freida McFadden Full Book
  • pdf download Animal by Lisa Taddeo
  • The William Morgan Affair Masonic Mystery in Upstate New York by Ann Webster Bunch on Ipad
  • Fermented Hot Sauce Cookbook A Step-by-Step Guide to Making Hot Sauce From Scratch by Kristen Wood o
  • PDF EPUB Download Límites saludables despedidas necesarias Ama a los demás sin perder lo mejor de t
  • Read Pdf Meetings With Remarkable Animals by Martin Clunes
  • Read Pdf Eighteen A History of Britain in 18 Young Lives by Alice Loxton
  • DOWNLOADS Stealing Horses to Great Applause The Origins of the First World War Reconsidered by Paul
  • Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori on Ipad
  • PDF EPUB Download 1001 Days Memoirs of an Empress by Empress Farah Pahlavi Taylor Viens Full Book
  • Download Pdf Never Planned on You A Novel by Lindsay Hameroff
  • Read pdf Son of Southtown My Life Between Two Worlds by Sonny Sandoval Jon Foreman
  • Hakumei Mikochi Tiny Little Life in the Woods Vol. 12 by Takuto Kashiki Taylor Engel on Ipad
  • PDF Kindle Kill or Be Killed Compendium by Ed Brubaker Sean Phillips Elizabeth Breitweiser
  • pdf download The Problem of Life How to Find Identity Purpose and Joy in a Disenchanted World by M
  • PDF DOWNLOAD The Talented Mrs. Mandelbaum The Rise and Fall of an American Organized-Crime Boss by
  • The Betrayal Bind How to Heal When the Person You Love the Most Hurts You the Worst by Michelle Mays
  • DOWNLOADS Handbook of Tyranny by Theo Deutinger
  • DOWNLOADS The Hidden Life of Cecily Larson A Novel by Ellen Baker
  • Download PDF The Road to Love Hearts in the Highlands by Linda Ford Ruth Axtell Morren
  • Planeta by Ana Oncina on Audiobook New
  • Read online The Mentorship Edge Creating Maximum Impact through Lateral and Hierarchical Mentoring b
  • DOWNLOAD PDF EPUB Beyond Painting by Max Ernst
  • download pdf The Half of It by Madison Beer
  • epub download Letizia y yo by Jaime Peñafiel Nuñez
  • PDF Download Cross My Heart A Novel by Megan Collins
  • 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-14 21:02:30
Previous
Deletes a pet
Built with