My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Pathfinder Adventure Path Abomination Vaults 5e by James Jacobs Vanessa Hoskins Step
  • PDF Kindle When the Earth Was Green Plants Animals and Evolutions Greatest Romance by Riley Black
  • DOWNLOAD PDF EPUB The Quiet Librarian A Novel by Allen Eskens
  • pdf download Darkfever by Karen Marie Moning
  • DOWNLOADS Is the Order a Rabbit Vol. 2 by Koi Giuseppe di Martino
  • DOWNLOAD PDF EPUB The Restless Wave A Novel of the United States Navy by James Stavridis USN
  • The Screenwriters Bible 7th Edition A Complete Guide to Writing Formatting and Selling Your Scrip
  • Download PDF Public Domain Volume 2 by Chip Zdarsky
  • Download PDF Be More Moo Deng The Unofficial Coloring Book by DK
  • DOWNLOAD PDF EPUB Soiled Dove by April Timms
  • Daddy Dinosaur Rescue PAW Patrol by Golden Books on Iphone New Format
  • PDF DOWNLOAD Where Is My Brother A familys journey through grief and loss by Sean Edward Fox Quin
  • Read Pdf The Riveter A Novel by Jack Wang
  • DEN Volume 5 The Price of Memories by Richard Corben on Iphone New Format
  • PDF Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • PDF EPUB Download To Heights and unto Depths Letters from the Colorado Trail by John Nepil Full Bo
  • Mangatopia Sea Creatures An Underwater Coloring Book of Anime and Manga by Liv Wan on Audiobook New
  • Read pdf His Cinderella Next Door by Cara Colter
  • DOWNLOAD PDF EPUB The Court of the Caliphate of al-Andalus Four Years in Umayyad Córdoba by Eduard
  • PDF EPUB Download The Palm Springs School Desert Modernism 1934-1975 by Alan Hess Christine Madri
  • DOWNLOADS Love is an Illusion - The Queen Vol. 2 by Fargo
  • Read online An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • DOWNLOADS The Ultimate Retirement Guide for 50 Winning Strategies to Make Your Money Last a Lifetime
  • PDF Shark Girl by Kate Beaton
  • pdf download Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bilingual E
  • PDF The Husky and His White Cat Shizun Erha He Ta De Bai Mao Shizun Novel Vol. 1 by Rou Bao Bu Chi
  • The Spy Coast by Tess Gerritsen on Iphone New Format
  • Online Read Ebook The Many Lives of Pusheen the Cat by Claire Belton
  • Pdf ePub The Widower Takes a Wife An Uplifting Inspirational Romance by Emma Miller download ebook
  • Pdf ePub Honey Lemon Soda Vol. 8 by Mayu Murata Amanda Haley download ebook
  • Read Pdf Black Wolf A Novel by Juan Gómez-Jurado
  • Disney Twisted-Wonderland Rose-Red Tyrant The Novel by Jun Hioki Yana Toboso on Iphone New Format
  • PDF DOWNLOAD Builders of a Nation by Haifaa Younis on Iphone
  • PDF EPUB Download Kowbird Amazing Chicken Recipes from Chef Matt Horns Restaurant and Home Kitchen b
  • Download PDF Getting to Know ArcGIS Pro 3.2 by Michael Law Amy Collins
  • PDF Kindle The Paradise Problem by Christina Lauren
  • Read pdf Welcome to Teaching Multilingual Learners An Illustrated Guide by Douglas Fisher Nancy F
  • Read pdf Wisconsin Wedding by Carla Neggers
  • PDF EPUB Download Fashion School in a Book Design Illustration for the Beginner and the Brand by Zo
  • Download Pdf Hate Me but Let Me Stay Vol. 2 by Hijiki
  • pdf download Kaiju No. 8 Vol. 12 by Naoya Matsumoto
  • Pdf ePub Curio Citizen by Katherine Forrister download ebook
  • Read online Captain America The Shield of Sam Wilson by L. L. McKinney Jesse J. Holland Sheree Ren
  • Jonesy Complete Collection by Sam Humphries Caitlin Rose Boyle on Audiobook New
  • The Christmas Strike by Nikki Rivers on Audiobook New
  • Pdf ePub Whole Life Sentence by Lynda La Plante download ebook
  • Wars of the Anunnaki Nuclear Self-Destruction in Ancient Sumer by Chris H. Hardy on Ipad
  • Gris Artbook by Nomada Studio on Ipad
  • PDF Download The Devils Charm by Megan Frampton
  • Pdf ePub Alya Sometimes Hides Her Feelings in Russian Vol. 2 by Sunsunsun Momoco download ebook
  • 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-08 21:48:40
Previous
Deletes a pet
Built with