My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS The Labyrinth by Simon Stålenhag
  • Download Pdf Freed Fifty Shades Freed as Told by Christian by E L James
  • Online Read Ebook Starfinder RPG Starfinder Enhanced by Kate Baker Michael Bramnik Jessica Catalan
  • download pdf CompTIA Tech CertMike Prepare. Practice. Pass the Test Get Certified Exam FC0-U71 by M
  • Planeta by Ana Oncina on Audiobook New
  • PDF EPUB Download An Unexpected Amish Family by Patricia Davids Jocelyn McClay Full Book
  • pdf download Swordheart by T. Kingfisher
  • PDF Download The Alphas Son - SPECIAL EDITION by Penny Jessup
  • PDF DOWNLOAD Compromised into Marriage by Liz Tyner on Iphone
  • Download PDF Something Like Fate A Novel by Amy Lea
  • PDF Kindle Playground A Novel by Richard Powers
  • PDF EPUB Download The Science of Racism Everything You Need to Know but Probably Dont - Yet by Keon
  • PDF Kindle The Wok Recipes and Techniques by J. Kenji Lopez-Alt
  • Pdf ePub The Book of Animal Secrets Natures Lessons for a Long and Happy Life by David B. Agus down
  • Jack Whitten Notes from the Woodshed by Katy Siegel Jack Whitten on Audiobook New
  • pdf download The Dangers in My Heart Vol. 8 by Norio Sakurai
  • PDF Kindle A Guide Book of United States Coins 2026 Official Red Book by R S Yeoman John Feigenbau
  • Download PDF Caging Skies A Novel by Christine Leunens
  • Download Pdf Marvel Studios 100 Objects Iconic Artifacts from the MCU by Tracey Miller-Zarneke
  • PDF EPUB Download The Marriage Wish Gods Gift by Dee Henderson Full Book
  • PDF SURVIVING SELF DESTRUCTION by Christain Taylor
  • Read online 50 Projects for Building Your Backyard Homestead Updated Edition A Hands-On Step-By-St
  • PDF Download Cómo operar en los Tribunales del Cielo revisado y ampliado Spanish Edition Conceder
  • I Will Do Better A Fathers Memoir of Heartbreak Parenting and Love by Charles Bock on Ipad
  • DOWNLOAD PDF EPUB Theres Always Divorce by N.E.L
  • PDF Kindle The Sleeper Agent The Rise of Lyme Disease Chronic Illness and the Great Imitator Anti
  • download pdf The Ultimate Glow Up Guide A Guide to Self Growth Self Care and Becoming the Best Ve
  • Read online Cold War 2.0 Artificial Intelligence in the New Battle between China Russia and Americ
  • Read Pdf Untethered by Gloria Bottelman
  • PDF EPUB Download Nobodys Empire A Novel by Stuart Murdoch Full Book
  • Online Read Ebook The Recursive Book of Recursion Ace the Coding Interview with Python and JavaScrip
  • Read online The Wedding People A Novel by Alison Espach
  • The Mighty Quinns Tristan by Kate Hoffmann on Ipad
  • Download PDF Something to Do with Paying Attention by David Foster Wallace McNally
  • Abraham Lincoln A Life by Michael Burlingame Jonathan W White on Audiobook New
  • PDF DOWNLOAD Una historia divertida by Emily Henry on Iphone
  • download pdf Witchcraft for Wayward Girls by Grady Hendrix
  • epub download Estuche Archivo de las tormentas The Stormlight Archive Boxed Set The Way of Kings
  • pdf download After Annie by Anna Quindlen
  • PDF Blade Runner Tokyo Nexus Die In Peace by Kianna Shore Mariano Taibo
  • DOWNLOADS Adolescence Boy it by Aya Sakyou Yuzuki N
  • Download PDF Dear Duck Please Come by Sarah Mackenzie Charles Santoso
  • Ambessa Chosen of the Wolf A League of Legends Arcane Novel by C. L. Clark on Iphone New Format
  • PDF EPUB Download The Dungeons Dragons Tarot Deck A 78-Card Deck and Guidebook by Official Dungeo
  • DOWNLOAD PDF EPUB Big Nate This Means War by Lincoln Peirce
  • Read online Close Your Eyes and Count to 10 A Novel by Lisa Unger
  • Pdf ePub The Ranchers Secret Son by Betsy St. Amant download ebook
  • DOWNLOAD PDF EPUB Nearly All the Men in Lagos Are Mad by Damilare Kuku
  • pdf download Gokurakugai Vol. 2 by Yuto Sano
  • PDF Download Fashion School in a Book Design Illustration for the Beginner and the Brand by Zoë H
  • 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-07 23:42:40
Previous
Deletes a pet
Built with