My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Analysis through Action for Actors and Directors From Stanislavsky to Contemporary Performance
  • Rick Kotanis 400 Million Dollar Summer by Waka T. Brown on Iphone New Format
  • Read online Ferren and the Invaders of Heaven by Richard Harland
  • DOWNLOAD PDF EPUB Disney Fairies 4 in 1 Vol. 2 by Paola Mulazzi The Disney Comics Group Augusto
  • Pdf ePub The Night House A novel by Jo Nesbo Neil Smith download ebook
  • Online Read Ebook The Psychology of the Armenian Genocide by George Green
  • DOWNLOADS Angel Answers Pocket Oracle Cards A 44-Card Deck and Guidebook by Radleigh Valentine
  • PDF EPUB Download Reckless by Elsie Silver Full Book
  • epub download Dreaming Japanese by Marty Friedman Jon Wiederhorn
  • PDF EPUB Download A Mistaken Match by Whitney Bailey Full Book
  • The Algebra of Wealth A Simple Formula for Financial Security by Scott Galloway on Iphone New Format
  • PDF EPUB Download A Shadow in the Ember by Jennifer L. Armentrout Full Book
  • DOWNLOAD PDF EPUB A Tempest of Tea by Hafsah Faizal
  • PDF EPUB Download Whats Your Favorite Animal by Eric Carle Full Book
  • Read online The Lost Traveler by Sanora Babb
  • JoJos Bizarre Adventure Part 6--Stone Ocean Vol. 7 by Hirohiko Araki on Audiobook New
  • PDF EPUB Download Diary of a Wimpy Kid Book 12 by Jeff Kinney Full Book
  • PDF DOWNLOAD Yeonnam-Dongs Smiley Laundromat A Novel by Kim Jiyun on Iphone
  • PDF Download The Big Cheese by Jory John Pete Oswald
  • pdf download We Are Voyagers Disney Moana 2 by RH Disney Disney Storybook Art Team
  • epub download Diddly Squat The No 1 Sunday Times Bestseller by Jeremy Clarkson
  • Read Pdf The City and Its Uncertain Walls A Novel by Haruki Murakami Philip Gabriel
  • Read online Sapiens A Graphic History Volume 3 The Masters of History by Yuval Noah Harari
  • Read pdf Fireborn Phoenix and the Frost Palace by Aisling Fowler
  • Download Pdf Practical Shooting Training by Ben Stoeger Joel Park
  • PDF DOWNLOAD The Meaning of Mariah Carey by Mariah Carey on Iphone
  • PDF EPUB Download The Let Them Theory A Life-Changing Tool That Millions of People Cant Stop Talki
  • PDF Download Too Close to Home by Lynette Eason
  • DOWNLOADS Love Off the Record by Samantha Markum
  • Download Pdf The Upcycled Self A Memoir on the Art of Becoming Who We Are by Tariq Trotter
  • Pdf ePub Unbreakable The Instant Sunday Times Bestseller Reading this is like watching an OSullivan
  • DOWNLOADS Sunrise on the Reaping A Hunger Games Novel by Suzanne Collins
  • PDF DOWNLOAD The Bones Beneath My Skin by TJ Klune on Iphone
  • Read online Leaning on Gates by Seamus ORourke
  • PDF Kindle Darbys Comprehensive Review of Dental Hygiene by Christine M Blue BSDH MS
  • Download PDF It Found Us by Lindsay Currie
  • Read online How to Be a Better Drinker Cocktail Recipes and Boozy Etiquette by Hannah Chamberlain T
  • 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 00:54:01
Previous
Deletes a pet
Built with