My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf The Bounty Hunters Redemption by Janet Dean
  • epub download God of Fury Deluxe Edition by Rina Kent
  • pdf download La Vie de Guinevere by Paula Lafferty
  • The Summer Hikaru Died Vol. 3 by Mokumokuren Ajani Oloye on Iphone New Format
  • PDF DOWNLOAD Liberated The Radical Art and Life of Claude Cahun by Kaz Rowe on Iphone
  • Read online Vows of Murder by Lynn Cahoon
  • Online Read Ebook PART - Student Workbook for Modern Dental Assisting by Debbie S. Robinson CDA MS
  • Download Pdf Loathe to Love You by Ali Hazelwood
  • PDF Kindle Romancing the Schoolteacher by Mary Davis
  • Read online CCNP Security Virtual Private Networks SVPN 300-730 Official Cert Guide by
  • Online Read Ebook Star Trek Lower Decks-Warp Your Own Way by Ryan North Chris Fenoglio
  • Download Pdf The Hunger Games Illustrated Edition by Suzanne Collins Nico Delort
  • DOWNLOADS The Chemistry Book by DK
  • PDF EPUB Download The Emperors Sword by Christian Cameron Full Book
  • PDF DOWNLOAD Slow Easy comforting Italian meals worth waiting for by Gennaro Contaldo David Loft
  • DOWNLOADS Moon Girl and Devil Dinosaur Wreck and Roll A Marvel Original Graphic Novel by Stephanie W
  • PDF Kindle You Could Do Damage by K.C. Mills
  • PDF EPUB Download Anime Art Class A Complete Course in Drawing Manga Cuties by Yoai Full Book
  • Read online Cold War 2.0 Artificial Intelligence in the New Battle between China Russia and Americ
  • Read Pdf A Killer at the Door The Dramatic Prison Break and Manhunt for Convicted Murderer Danilo
  • Online Read Ebook The Youngest One in the Room by Dayna Adelman
  • Download PDF A Time to Protect by Lois Richer
  • PDF Money Lies and God Inside the Movement to Destroy American Democracy by Katherine Stewart
  • Warriors Changing Skies 1 The Elders Quest by Erin Hunter on Ipad
  • While the Duke Was Sleeping by Samara Parish on Audiobook New
  • Minecraft Annual 2025 by Mojang AB Farshore on Audiobook New
  • Read Pdf Saxophone Colossus The Life and Music of Sonny Rollins by Aidan Levy
  • PDF Download Judge Dredd The Complete Case Files 23 by John Wagner Mark Millar Carlos Ezquerra
  • PDF DOWNLOAD Knitting Stylish Stuff from Your Stash 20 Scrappy Desgins by Erica Berntsen on Iphone
  • pdf download Proud Flesh A Memoir of Motherhood Intimate Violence and Reclaiming Pleasure by Cathe
  • Astrology. the Library of Esoterica by Andrea Richards Susan Miller Jessica Hundley Thunderwing o
  • PDF Kindle InvestiGators Agents of S.U.I.T. Wild Ghost Chase by John Patrick Green
  • download pdf Minatos Laundromat Vol. 1 by Yuzu Tsubaki Sawa Kanzume Kei Coffman
  • Download PDF Marvel Comics A Manga Tribute by Marvel Comics
  • pdf download A Convenient Christmas Bride by Rhonda Gibson
  • pdf download When I Arrived at the Castle by E.M. Carroll
  • Read pdf Dungeons and Drama by Kristy Boyce
  • Download PDF The Book of Practical Dreamcraft Harness Your Nightly Adventures for Health and Happine
  • PDF EPUB Download Daydream by Hannah Grace Full Book
  • Pdf ePub A Love So Strong When Love Comes Home by Arlene James download ebook
  • DOWNLOADS The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino Maebar
  • Bunt Striking Out on Financial Aid by Ngozi Ukazu Mad Rupert on Ipad
  • PDF Download I Hope This Finds You Well A Novel by Natalie Sue
  • Read Pdf The Unexpected Duke by Julia Justiss
  • The Very Hungry Caterpillars Animal Colors by Eric Carle on Ipad
  • pdf download A Little Burglary in Bibury by Christina Hamlett
  • pdf download Dian Hansons The History of Mens Magazines. Vol. 4 1960s Under the Counter by Dian Hans
  • Download Pdf Portals Energetic Doorways to Mystical Experiences Between Worlds by Freddy Silva
  • Conns Current Therapy 2024 by Rick D. Kellerman MD David P. Rakel MD Joel J. Heidelbaugh MD FAAFP
  • Download Pdf The Sensitive Patients Healing Guide Top Experts Offer New Insights and Treatments for
  • 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-10 22:37:55
Previous
Deletes a pet
Built with