My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Online Read Ebook Effective C 2nd Edition An Introduction to Professional C Programming by Robert C
  • Download PDF Lonely Planet Experience Andalucia by Anna Kaminski Fiona Flores Watson Isabella Nobl
  • PDF EPUB Download Oh The Poles Youll Climb Celebrating LineMen and the Kids Who Keep Them Going by
  • download pdf Validation How the Skill Set That Revolutionized Psychology Will Transform Your Relati
  • Read pdf Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with Her
  • Read online 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparaiso
  • Read Pdf The Music of What Happens by Bill Konigsberg
  • Pdf ePub Ars Notoria The Grimoire of Rapid Learning by Magic with the Golden Flowers of Apollonius
  • Pdf ePub The Temporary Mrs. Marchetti by Melanie Milburne download ebook
  • Read pdf Dreadnoughts The March of Progress by Michael Carroll John Higgins
  • Read online Amor en juego The Long Game by Elena Armas
  • Disrupting the Game From the Bronx to the Top of Nintendo by Reggie Fils-Aimé on Ipad
  • The Electric State by Simon Stalenhag on Iphone New Format
  • Download PDF The Social Paradox Autonomy Connection and Why We Need Both to Find Happiness by Will
  • Read pdf Post-work What It Is Why It Matters and How We Get There by Helen Hester Will Stronge
  • PDF DOWNLOAD Discount Armageddon by Seanan McGuire on Iphone
  • DOWNLOADS Loteria by Mario Alberto Zambrano
  • Pdf ePub The Self A Very Short Introduction by Marya Schechtman download ebook
  • PDF Download The Book of Azrael by Amber Nicole
  • PDF Pantheon An Illustrated Handbook to the Greek Gods Goddesses by Caroline Lawrence Flora Kirk
  • download pdf Joel Meyerowitz A Question of Color by Joel Meyerowitz Robert Shore
  • epub download The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newpo
  • DOWNLOAD PDF EPUB Greenteeth by Molly ONeill
  • pdf download Kindred by Octavia Butler Tomi Adeyemi
  • A Trap for Cinderella by Sébastien Japrisot Helen Weaver on Ipad
  • Download PDF Blender All-in-One For Dummies by Jason van Gumster
  • PDF Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube
  • Estuche Archivo de las tormentas The Stormlight Archive Boxed Set The Way of Kings Words of Radia
  • Download Pdf Dinghai Fusheng Records Novel Vol. 1 Special Edition by Fei Tian Ye Xiang Qian Er Bai
  • Download PDF The Immortal Orders Omnibus by Allison Carr Waechter
  • Download PDF The Amish Widowers Twins and The Amish Bachelors Choice by Jo Ann Brown Jocelyn McClay
  • Read online 2084 and the AI Revolution Updated and Expanded Edition How Artificial Intelligence Inf
  • DOWNLOADS Eyes on Gaza Witnessing Annihilation by Khaled A. Beydoun Mohammad Sabaaneh
  • Online Read Ebook Short Game Mitsuru Adachis Baseball Short Story Collection by Mitsuru Adachi
  • PDF EPUB Download They Call Me Güero A Border Kids Poems by David Bowles Full Book
  • Read Pdf Princess Elsie Builds a Castle Discovers the Magic of Engineering by Kelsey Kirrene
  • Read Pdf Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • Online Read Ebook Vagabondo by Paul Freeman
  • DOWNLOAD PDF EPUB The End of the World Is Just the Beginning Mapping the Collapse of Globalization
  • epub download Swimming with Spies by Chrystyna Lucyk-Berger
  • DOWNLOADS The Outlaw Noble Salt A Novel by Amy Harmon
  • PDF EPUB Download Son of Southtown My Life Between Two Worlds by Sonny Sandoval Jon Foreman Full Bo
  • Vampiros en El Norte Vampires of El Norte by Isabel Cañas on Ipad
  • Read pdf Over The Limit by K. Bromberg
  • SCARLET WITCH BY STEVE ORLANDO VOL. 4 QUEEN OF CHAOS by Steve Orlando Jacopo Camagni Russell Daute
  • Download PDF Heaven and Hell by Jón Kalman Stefánsson Philip Roughton
  • Hills of Shivers and Shadows by Pam Godwin on Iphone New Format
  • Download Pdf Twilight Deluxe Collectors Edition by Stephenie Meyer
  • DOWNLOADS Project Censoreds State of the Free Press 2025 by Mickey Huff Andy Lee Roth Mnar Adley
  • Online Read Ebook How We Sold Our Future The Failure to Fight Climate Change by Jens Beckert Ray Cu
  • 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 23:03:01
Previous
Deletes a pet
Built with