My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download The No-Pressure Book Journal A No-Guilt No-Shame No-Stress Journal to Help You Read B
  • PDF EPUB Download SECRET WARS BY JONATHAN HICKMAN OMNIBUS ALEX ROSS REED RICHARDS COVER by Jonathan
  • DOWNLOADS Sister Deborah by Scholastique Mukasonga Mark Polizzotti
  • Read pdf Game of Thrones The Costumes the official book from Season 1 to Season 8 by Michele Clap
  • PDF Oyster Perpetual Submariner The Watch that Unlocked the Deep by Nicholas Foulkes
  • pdf download Fourth Wing by Rebecca Yarros
  • download pdf El recluso by Freida McFadden Santiago del Rey Farrés
  • PDF DOWNLOAD Sweet Potato Soul Vegan Vibes 100 Soulful Plant-Based Recipes for Healthy Everyday Me
  • Read Pdf How to Paint Landscapes Quickly and Beautifully in Watercolor and Gouache by Nathan Fowke
  • PDF Kindle Protecting Wren A Navy SEAL Military Romantic Suspense Novel by Susan Stoker
  • Read pdf The Teachings of Don Juan A Yaqui Way of Knowledge by Carlos Castaneda
  • Read Pdf Black in Blues How a Color Tells the Story of My People by Imani Perry
  • Connect Building Exceptional Relationships with Family Friends and Colleagues by David Bradford Ph
  • Pdf ePub The Survivor Wants to Die at the End by Adam Silvera download ebook
  • Download PDF MCAT Complete 7-Book Subject Review 2024-2025 Books Online 3 Practice Tests by Kaplan
  • DOWNLOADS The Unmaking of June Farrow A Novel by Adrienne Young
  • PDF Kindle Song for Someone The Musical Life of Kenny Wheeler by Brian Shaw Nick Smart
  • Download Pdf Paradise Rot A Novel by Jenny Hval Marjam Idriss
  • PDF DOWNLOAD Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros on Iphone
  • PDF EPUB Download Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by J
  • DOWNLOAD PDF EPUB The Village Healers Book of Cures by Jennifer Sherman Roberts
  • Download Pdf Such Sweet Thunder A Novel by Vincent O. Carter Jesse McCarthy
  • Online Read Ebook Appalachian Trail Data Book 2025 by Daniel Chazin
  • Read Pdf Quien bien te quiere te hará feliz El método revolucionario que transformará tu relación
  • PDF Kindle The Golden Enclaves A Novel by Naomi Novik
  • Download PDF Madame Sorels Lodger by Tracy Wise
  • DOWNLOAD PDF EPUB Moving Beyond the COVID-19 Lies Restoring Health Hope for Humanity by Bryan Ard
  • DOWNLOAD PDF EPUB Well Prescribe You a Cat by Syou Ishida
  • DOWNLOADS American Horticultural Society Essential Guide to Perennial Gardening Techniques and Know-
  • DOWNLOAD PDF EPUB Murachs ASP.NET Core MVC by Joel Murach Mary Delamater
  • Read pdf The Enchanters A novel by James Ellroy
  • Manual of Biogenic House Sections Materials and Carbon by Paul Lewis Marc Tsurumaki David J. Lewis
  • Look at Me The XXXTENTACION Story by Jonathan Reiss on Audiobook New
  • DOWNLOADS The Unbecoming of Margaret Wolf by Isa Arsén
  • pdf download From Under the Truck A Memoir by Josh Brolin
  • DOWNLOADS The Pumpkin Spice Café Dream Harbor Book 1 by Laurie Gilmore
  • Online Read Ebook The Senators Wife A Novel by Liv Constantine
  • Truth or Beard Deluxe Edition by Penny Reid on Ipad
  • Download PDF Who Are We Now by Blaise Aguera y Arcas
  • DOWNLOADS The Last Dance You Saved by Lj Evans
  • Aria of the Beech Forest Vol. 2 by Yugiri Aika Yumi Tanaka on Iphone New Format
  • PDF EPUB Download SINoALICE 06 by Yoko Taro Takuto Aoki Himiko Jino Full Book
  • PDF EPUB Download David Kibbes Power of Style A Guided Journey to Help You Discover Your Authentic S
  • PDF Kindle Meet Every Learners Needs Redesigning Instruction So All Students Can Succeed by Robert
  • epub download Dungeons and Drama by Kristy Boyce
  • PDF Download Date A Live Vol. 13 light novel by Koushi Tachibana Tsunako Jocelyne Allen
  • Download Pdf National Geographic Field Guide to the Birds of the United States and Canada-East 2nd
  • PDF Doctor Who Wild Blue Yonder Target Collection by Mark Morris
  • Read online Disappointing Affirmations by Dave Tarnowski
  • Boys Who Hunt Dark RH Bully Romance by Clarissa Wild 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
Previous
Deletes a pet
Built with