My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Dinghai Fusheng Records Novel Vol. 1 Special Edition by Fei Tian Ye Xiang Qian Er Ba
  • Read pdf Honey Lemon Soda Vol. 7 by Mayu Murata
  • Online Read Ebook The Desert Talon by Karin Lowachee
  • PDF Download The Way I Used to Be Paperback Collection Boxed Set The Way I Used to Be The Way I Am
  • The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle on Iphone New Format
  • PDF EPUB Download Montecore by Luis Cervantes Duran Windfield Gustavo Machado Full Book
  • Pdf ePub The Inner Tarot A Modern Approach to Self-Compassion and Empowered Healing Using the Tarot
  • Download PDF A Batuu Adventure Star Wars Galaxys Edge by Jeneanne DeBois Bill Robinson
  • pdf download The Hidden Dungeon Only I Can Enter Manga Vol. 11 by Meguru Seto Tomoyuki Hino Takeha
  • Pdf ePub The Perfection Trap Embracing the Power of Good Enough by Thomas Curran download ebook
  • DOWNLOAD PDF EPUB Fermented Hot Sauce Cookbook A Step-by-Step Guide to Making Hot Sauce From Scrat
  • Read Pdf Los dos hemisferios de Lucca Luccas World by Bárbara Anderson
  • Download PDF The Adventures of Pinocchio A Pop-Up Book by Giordano Philip Hannah Porter Carlo Coll
  • Online Read Ebook The Broken Whistle A Deep State Run Amok by Pedro Israel Orta
  • Read Pdf La riada The Flood by Michael McDowell Ph.D
  • epub download Pandora in the Crimson Shell Ghost Urn Vol. 19 by Shirow Masamune Rikudou Koushi
  • Sea of Thieves The Cookbook by Kayce Baker on Ipad
  • PDF DOWNLOAD One Day Everyone Will Have Always Been Against This by Omar El Akkad on Iphone
  • PDF Download Wooing the Witch Queen by Stephanie Burgis
  • pdf download Who Owns This Sentence A History of Copyrights and Wrongs by David Bellos Alexandre Mo
  • Online Read Ebook DD Monster Manual 2024 by Wizards of the Coast
  • PDF The Bachelors Unexpected Family by Lisa Carter
  • PDF Kindle Exquisite Corpse by Poppy Z. Brite
  • Percy Jackson and the Olympians The Official Cookbook by Jarrett Melendez on Iphone New Format
  • PDF EPUB Download Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda St
  • PDF EPUB Download Sebze Vegetarian Recipes from My Turkish Kitchen by Ozlem Warren Full Book
  • PDF Download Island for Two Hawaii Magic Fiji Fantasy by Beverly Jenkins Elaine Overton
  • Warhammer 40 000 The Ultimate Guide by Gavin Thorpe Guy Haley on Ipad
  • PDF DOWNLOAD The Housemaids Secret by Freida McFadden on Iphone
  • Daydream by Hannah Grace on Iphone New Format
  • PDF Download Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • PDF EPUB Download The Kaggle Workbook Self-learning exercises and valuable insights for Kaggle dat
  • Read pdf Bride in Training by Gail Gaymer Martin
  • Read Pdf Binding 13 by Chloe Walsh
  • Pdf ePub Lonely Planet Sicily 10 by Nicola Williams Sara Mostaccio Cristian Bonetto download eboo
  • PDF Kindle My Name Was Eden A Novel by Eleanor Barker-White
  • Read online The Cold Start Problem How to Start and Scale Network Effects by
  • download pdf Reckless by Elsie Silver
  • Greater Tigray and the Mysterious Magnetism of Ethiopia by Haggai Erlich on Iphone New Format
  • DOWNLOAD PDF EPUB Dead Happy by Josh Silver
  • PDF Kindle Dreamers Nightmare The Dragon Prince Graphic Novel 4 by Nicole Andelfinger Felia Hanaka
  • Read Pdf Hell Mode Vol. 7 The Hardcore Gamer Dominates in Another World with Garbage Balancing by
  • Read online Failure Frame I Became the Strongest and Annihilated Everything With Low-Level Spells Li
  • Home Away From Home by Cynthia Lord on Audiobook New
  • PDF EPUB Download Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor
  • PDF Download Storm and Fury by Jennifer L. Armentrout
  • Online Read Ebook CABIN Off the Grid Adventures with a Clueless Craftsman by Patrick Hutchison
  • PDF EPUB Download Magic. 1400s-1950s by Mike Caveney Jim Steinmeyer Full Book
  • PDF The Wolf Who Learned Self-Control by Orianne Lallemand Eleonore Thuillier
  • PDF DOWNLOAD Montana Unbranded by Nadia Nichols on Iphone
  • 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 02:58:45
Previous
Deletes a pet
Built with