My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Lights Out An Into Darkness Novel by Navessa Allen
  • DOWNLOADS Fate Kaleid Liner Prisma Illya The Complete Manga Collection by Hiroshi Hiroyama Type-Moo
  • epub download Want Sexual Fantasies by Anonymous by Gillian Anderson
  • Cherringham - A Fatal Illusion A Cosy Crime Series by Matthew Costello Neil Richards on Ipad
  • pdf download Starting Point 1979-1996 by Hayao Miyazaki
  • Pdf ePub Second Sister A Novel by Chan Ho-Kei Jeremy Tiang download ebook
  • The Instruments of Darkness Charlie Parker Thriller 21 by John Connolly on Ipad
  • DOWNLOADS A Broken Peoples Playlist Stories from Songs by Chimeka Garricks
  • Read online More Days at the Morisaki Bookshop A Novel by Satoshi Yagisawa Eric Ozawa
  • Download PDF The Official Yellowstone Bar Book 75 Cocktails to Enjoy after the Works Done by Lex Tay
  • Read pdf Baphomet Revealed Mysteries and Magic of the Sacred Icon by Heather Lynn PhD
  • Pdf ePub Feigin and Cherrys Textbook of Pediatric Infectious Diseases 2-Volume Set by James Cherry
  • Read online Hiding Him by Adam Hattan
  • The Echoes A Novel by Evie Wyld on Ipad
  • DOWNLOADS Framed Environment Design by Marcos Mateu-Mestre
  • PDF Download You Dreamed of Empires A Novel by Álvaro Enrigue Natasha Wimmer
  • Pretty Delicious Simple Modern Mediterranean Served with Style A Cookbook by Alia Elkaffas Radwa
  • Old School by Gordon Korman on Iphone New Format
  • PDF DOWNLOAD A Flicker in the Dark A Novel by on Iphone
  • The Art of Spyro Reignited Trilogy by Micky Neilson on Iphone New Format
  • DOWNLOADS Lonely Planet Experience Spain by Esme Fox Guille Alvarez Sally Davies Jamie Ditaranto
  • Philosophy and Life Exploring the Great Questions of How to Live by A. C. Grayling on Ipad
  • PDF EPUB Download To Sicily with Love by Jennifer Probst Full Book
  • pdf download Climatic Architecture Philippe Rahm architectes by Philippe Rahm
  • Read Pdf To Catch a Spy The Art of Counterintelligence by James M. Olson
  • Online Read Ebook Blue Jerusalem British Conservatism Winston Churchill and the Second World War b
  • DOWNLOADS Boot Camp by Gina Musa
  • PDF EPUB Download Heartstopper Volume 3 by Alice Oseman Full Book
  • DOWNLOADS The Light Pours Out of Me The Official John McGeoch Story by Rory Sullivan-Burke
  • PDF The Epic A Very Short Introduction by Anthony Welch
  • You Me and Ulysses S. Grant A Farcical Biography by Brad Neely on Audiobook New
  • Read Pdf Wyoming Promises by Kerri Mountain
  • download pdf The Penguin Vol 2 All Bad Things by Tom King Rafael De Latorre
  • epub download The Big Dark Sky by Dean Koontz
  • PDF Kindle Llamame Iggy Call Me Iggy Spanish Language Edition by Jorge Aguirre Rafael Rosado Fer
  • 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-15 10:38:10
Previous
Deletes a pet
Built with