My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Orlam by Pj Harvey
  • PDF EPUB Download React Key Concepts - Second Edition An in-depth guide to Reacts core features by M
  • Read Pdf Ryan McGinley Yearbook by Ryan McGinley
  • Read Pdf Glaciers Edge A Novel by R. A. Salvatore
  • DOWNLOAD PDF EPUB Galway Confidential A Jack Taylor Novel by Ken Bruen
  • Online Read Ebook Wallace Gromit Cracking Crochet Create 12 iconic characters in amigurumi by Sarah
  • Read Pdf What a Run Inside the Philadelphia Eagles Unforgettable 2024 Championship Season by The P
  • Read online The Roots of Goodness Zen Master Dogens Teaching on the Eight Qualities of a Great Perso
  • PDF When One World Ends Another Begins by Nathaniel Luscombe
  • Love is an Illusion - The Queen Vol. 2 by Fargo on Ipad
  • download pdf The Other Side A Story of Women in Art and the Spirit World by Jennifer Higgie
  • Download Pdf A Home for Her Family by Virginia Carmichael
  • PDF Download This Reincarnated Countess Is Trying to Escape From Her Prince Volume 2 by Saki Tsuk
  • DOWNLOADS Silk A World History by Aarathi Prasad
  • God Didnt Make Us to Hate Us 40 Devotions to Liberate Your Faith from Fear and Reconnect with Joy by
  • Read Pdf Christmas on the Prairie by Frances Devine
  • download pdf Monsieur Pain by Roberto Bolaño Chris Andrews
  • Download Pdf The Running Grave by Robert Galbraith
  • God of Pain Special Edition Print by Rina Kent on Audiobook New
  • Read online Smart Girl A First-Gen Origin Story by Latonya Rease Miles
  • Download Pdf El hombre iluminado The Sunlit Man by Brandon Sanderson
  • PDF EPUB Download I Cross-Dressed for the IRL Meetup 3 by Kurano Full Book
  • The Warriors Bride Alliance by Denise Lynn on Iphone New Format
  • Download PDF Orlando A Norton Critical Edition by Virginia Woolf Madelyn Detloff
  • epub download Lovely by Kris Starr
  • A Tiny Piece of Blue A Novel by Charlotte Whitney on Audiobook New
  • Read pdf Sword of Honor by Evelyn Waugh
  • PDF EPUB Download Kagurabachi Vol. 2 by Takeru Hokazono Full Book
  • Breaking the Code by Maria Lokken on Iphone New Format
  • Online Read Ebook Greater Tigray and the Mysterious Magnetism of Ethiopia by Haggai Erlich
  • Twilight Out of Focus 6 Long Take Part 2 by Jyanome on Audiobook New
  • PDF Kindle The New Romantic Garden by Jo Thompson
  • Read online Killer Story The Truth Behind True Crime Television by Claire St. Amant
  • download pdf The Pucking Proposal by Lauren Landish
  • DOWNLOADS War by Louis-Ferdinand Céline Charlotte Mandell
  • PDF EPUB Download Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro Full Book
  • 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-13 03:33:15
Previous
Deletes a pet
Built with