My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD CCNP Security Virtual Private Networks SVPN 300-730 Official Cert Guide by on Iphone
  • Read Pdf Quan Tao by Ryan Buchanan
  • Pdf ePub The Little Book of Chanel by Lagerfeld The Story of the Iconic Fashion Designer by Emma Ba
  • PDF The House of Awadh A Hidden Tragedy by Aletta André Abhimanyu Kumar
  • epub download The Thing from the Lake by Eleanor M Ingram Gina R Collia
  • PDF Kindle Boot Camp by Gina Musa
  • DOWNLOAD PDF EPUB The Amish Marriage Bargain and Finding Her Amish Love by Marie E. Bast Rebecca
  • epub download Tome of Beasts 3 5E by Jeff Lee Richard Green Sarah Madsen Kelly Pawlik
  • PDF EPUB Download The Deconstruction of Christianity What It Is Why Its Destructive and How to Res
  • Read Pdf The Nervous System Workbook Practical Exercises to Ease Anxiety Find Safety and Come Ho
  • Download Pdf Handbook for Hard Times A monks guide to fearless living by Gelong Thubten
  • pdf download Echoes from Forgotten Mountains Tibet in War and Peace by Jamyang Norbu
  • PDF Download Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Alex As
  • DOWNLOAD PDF EPUB Star Wars The High Republic Escape from Valo by Daniel José Older Alyssa Wong
  • Download PDF The 500 Years of Indigenous Resistance Comic Book Revised and Expanded by Gord Hill Pa
  • epub download 7000 Years of Jewelry by Hugh Tait
  • pdf download The Arrangements by Orly Konig
  • The Spirit of Hope by Byung-Chul Han Daniel Steuer on Audiobook New
  • Download Pdf His Blue Moon Princess The Silver City Series by Jenny Fox
  • Online Read Ebook The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano
  • PDF DOWNLOAD Game Theory Understanding the Mathematics of Life by Brian Clegg on Iphone
  • PDF Download Lightning Can Strike Twice My Life as a Fury by Tommy Fury
  • Download Pdf Food Scarcity and Power in Southeastern Europe during the Second World War by Paolo Fo
  • pdf download Last Trip to Salida by Anissa Lujan Peyton Bassett Madeline Dyer
  • Read pdf Trinity Puglias Son by Steven Zizza
  • Read Pdf Honey Hunger A Novel by Zahran Alqasmi Marilyn Booth
  • PDF DOWNLOAD Cook Like a Real Italian Super Sexy and Simple Recipes from Cooking with Bello by Ang
  • epub download Cornbread Milk by Jamal Tylor
  • epub download Talent How to Identify Energizers Creatives and Winners Around the World by Tyler Co
  • PDF DOWNLOAD Ill Become a Villainess Who Goes Down in History Vol. 1 novel by Izumi Okido Jyun H
  • PDF Vampire Knight Memories Vol. 9 by Matsuri Hino
  • Mixed Feelings Poems and Stories by Avan Jogia on Iphone New Format
  • Nothing to Hide 2. Young Men from Slovakia by Phil Dlab on Iphone New Format
  • PDF The Dawn of Yangchen Avatar The Last Airbender Chronicles of the Avatar Book 3 by F. C. Yee
  • PDF Kindle Easy Learning French Dictionary Trusted support for learning by Collins
  • PDF DOWNLOAD The Beauty of Horror Haunted Holidays Coloring Book by Alan Robert on Iphone
  • Read Pdf The Painters Daughters A Novel by Emily Howes
  • pdf download Rocky Mountain Dreams and Family on the Range by Danica Favorite Jessica Nelson
  • DOWNLOADS The Advanced Roblox Coding Book An Unofficial Guide Updated Edition Learn How to Script G
  • PDF Download Middle School and Other Disasters Collection Boxed Set Worst Broommate Ever Worst Lov
  • DEE The Silence Whispers by Brad Umphress on Iphone New Format
  • PDF Are You There God Its Me In Menopause An Unfiltered Honest Guide to Midlife Hormones Health
  • pdf download Nothing Breaks Like A Heart A Riveting Psychological Thriller by Barbara Freethy
  • PDF EPUB Download A Haunt for Jackals by J. L. Odom Full Book
  • Read pdf Open Minded A Novel by Chloe Seager
  • Read Pdf Mushoku Tensei Jobless Reincarnation Manga Vol. 20 by Rifujin na Magonote Fujikawa Yuka
  • Download Pdf Ill Have What Shes Having by Chelsea Handler
  • PDF Download Killing Me Soufflé A Bakeshop Mystery by Ellie Alexander
  • As Long as the Lemon Trees Grow by Zoulfa Katouh on Ipad
  • Mistakes Were Made A Novel by Meryl Wilsner on Iphone New Format
  • 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 21:02:35
Previous
Deletes a pet
Built with