My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Play Along by Liz Tomforde
  • PDF EPUB Download The Voices of Adriana by Elvira Navarro Christina MacSweeney Full Book
  • PDF Kindle The Guide to The Orville Deluxe Edition by Andre Bormanis
  • Pdf ePub She Loves to Cook and She Loves to Eat Vol. 3 by Sakaomi Yuzaki Caleb Cook download ebo
  • Download PDF Analytic Idealism in a Nutshell A straightforward summary of the 21st centurys only pla
  • DOWNLOAD PDF EPUB Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen
  • DOWNLOADS JoyFull Cook Effortlessly Eat Freely Live Radiantly A Cookbook by Radhi Devlukia-Shetty
  • DOWNLOAD PDF EPUB Technocolonialism When Technology for Good is Harmful by Mirca Madianou
  • DOWNLOAD PDF EPUB A Slash of Emerald by Patrice McDonough
  • Pdf ePub The Formula How Rogues Geniuses and Speed Freaks Reengineered F1 into the Worlds Fastest
  • Download PDF Lastman Book 6 by Balak Michaïl Sanlaville Bastien Vives
  • DOWNLOAD PDF EPUB What the Rabbis Know That I Never Learned in Church by Chaim Bentorah
  • Read online Deep Beneath Us by Catriona McPherson
  • pdf download The Final Trigger The Truth and Lies of JFKs Assassination by Randall Windle
  • Pdf ePub The Hunger Games Illustrated Edition by Suzanne Collins Nico Delort download ebook
  • The Minimalist-ish Journal Buy Less Live Better and Find Joy in What You Already Have by Christina
  • epub download The Court of the Caliphate of al-Andalus Four Years in Umayyad Córdoba by Eduardo Manz
  • PDF EPUB Download Babel Vol. 3 by Kuji Furumiya Haruyuki Morisawa Amelia Imogen Full Book
  • Pdf ePub To Catch a Spy The Art of Counterintelligence by James M. Olson download ebook
  • PDF Kindle Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • PDF DOWNLOAD A Kitchen Witchs Culinary Oracle Deck Gain Daily Insight and Bring Magic to Your Meal
  • Read online 2034 A Novel of the Next World War by Elliot Ackerman Admiral James Stavridis USN
  • PDF Kindle Random in Death An Eve Dallas Novel by J. D. Robb
  • Read pdf Conquistadores A New History of Spanish Discovery and Conquest by Fernando Cervantes
  • download pdf Wars of Suns and Shadows by Scarlett Larsson
  • DOWNLOADS Defying Shadows For Witches and Pagans Battling Cancer and Chronic Illness by Jessica Sett
  • Read Pdf Oaths and Shadows by K. M. Blackburn
  • Read pdf The Journey Big Panda and Tiny Dragon by James Norbury
  • PDF EPUB Download Mimesis Expression Construction Fredric Jamesons Seminar on Aesthetic Theory by
  • Download Pdf Three Grumpy Groomsmen by Emma Foxx
  • Download PDF Spawn Compendium Volume 6 Color Edition by Paul Jenkins Todd McFarlane Erik Larsen T
  • Read online Safe Haven Investing for Financial Storms by Mark Spitznagel
  • DOWNLOAD PDF EPUB La tormenta Edición limitada cantos pintados The Reaper Limited Edition Spra
  • PDF EPUB Download The Bones Beneath My Skin by TJ Klune Full Book
  • DOWNLOADS The End of Education as We Know It Regenerative Learning for Complex Times by Ida Rose Flo
  • Download PDF Brimstone Deluxe Limited Edition by Callie Hart
  • PDF EPUB Download The Echoes A Novel by Evie Wyld Full Book
  • PDF Download Heartland Courtship and Homefront Hero by Lyn Cote Allie Pleiter
  • Download Pdf Be a Revolution How Everyday People Are Fighting Oppression and Changing the World-and
  • Download Pdf Framed Environment Design by Marcos Mateu-Mestre
  • Small Worlds by Caleb Azumah Nelson on Ipad
  • Pdf ePub Forward As Always by Olan Rogers Jake Sidwell Jim Krueger download ebook
  • Read Pdf Getting Wild Sex from Your Conservative Woman by Brandi Love
  • DOWNLOADS Maze cutter. Un nuevo comienzo by James Dashner
  • Download PDF The Murder After the Night Before by Katy Brent
  • Read Pdf Marilyn Manson by Perou 21 Years in Hell by Marilyn Manson Perou
  • PDF DOWNLOAD The Stories Behind the Poses The Indian mythology that inspired 50 yoga postures by R
  • PDF EPUB Download The Amish Marriage Bargain and Finding Her Amish Love by Marie E. Bast Rebecca
  • Read pdf Twisted Lies by Ana Huang
  • Read Pdf Before We Forget Kindness by Toshikazu Kawaguchi
  • 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:27:40
Previous
Deletes a pet
Built with