My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF The Voices of Adriana by Elvira Navarro Christina MacSweeney
  • pdf download Song of the Sea The Graphic Novel by Tomm Moore Samuel Sattin
  • PDF Kindle Heartless Hunter The Crimson Moth Book 1 by Kristen Ciccarelli
  • pdf download Monster Hunter Vendetta by Larry Correia
  • PDF Kindle The Crimson Road by A.G. Slatter
  • Pdf ePub Incidents Around the House A Novel by Josh Malerman download ebook
  • PDF EPUB Download Summer in the City by Alex Aster Full Book
  • pdf download The Marquess Next Door A Steamy Historical Romance Book by Virginia Heath
  • Read Pdf 50 Great Stalks Hunting the Worlds Greatest Game Up Close by Craig Boddington
  • Read Pdf The Artists Guide to Sketching The Classic Book about Making Art on Location by James Gur
  • Download PDF Blood Of My Heart by Ariel Dawn
  • Read Pdf Mission Christmas by Lindsay McKenna Susan Grant
  • Online Read Ebook Karmatic Heart by Nickea Nixon
  • Online Read Ebook A Nice Guy Like Me A Memoir by Spencer Keasey
  • Online Read Ebook Imperfect Solidarities by Aruna DSouza
  • download pdf Iron Flame by Rebecca Yarros
  • PDF Kindle So You Want To Be A Game Master Everything You Need to Start Your Tabletop Adventure for
  • Download Pdf Los nombres de Feliza Felizas Names by Juan Gabriel Vásquez
  • Download PDF Hands on Research for Artists Designers Educators by Harma Staal Jojanneke Gijsen M
  • Read Pdf Wargaming Campaigns by Henry Hyde
  • Read pdf Broken Prince by Erin Watt
  • DOWNLOAD PDF EPUB The Distance Between Right Wrong Prison Short Stories by Kenneth Brydon
  • PDF Kindle Modern Persian Script Hacking The optimal way to learn the Persian Farsi alphabet by J
  • An Honorable Mission by Laura Scott Shirlee McCoy on Ipad
  • Download PDF Lovers Touch and A Deal with Demakis by Penny Jordan Tara Pammi
  • Alien Covenant Davids Drawings by Dane Hallett Matt Hatton on Iphone New Format
  • PDF EPUB Download Kama-Sutra Una postura para cada dia by DK Full Book
  • PDF EPUB Download Take What You Need Soft Words for Hard Days by Aundi Kolber Full Book
  • PDF EPUB Download The Lost Library by Rebecca Stead Wendy Mass Full Book
  • Read Pdf The Dare by Natasha Preston
  • Online Read Ebook Something in the Walls A Novel by Daisy Pearce
  • epub download Growing Up Farley A Chris Farley Story by Kevin Farley Chris Farley Frank Marraffino
  • pdf download Surprise Heir for the Princess by Kate Hardy
  • Read pdf DOCTOR WHO MONSTROUS BEAUTY TP by Jacqueline Rayner Scott Gray Dan Abnett Gareth Rober
  • Pdf ePub Swift and Saddled A Rebel Blue Ranch Novel by Lyla Sage download ebook
  • epub download The Museum of Witchcraft by Diane Purkiss
  • PDF Kindle Can Fasting Save Your Life by Toshia Myers PhD Alan Goldhamer D.C.
  • PDF Kindle Between Never and Forever by Shain Rose
  • PDF DOWNLOAD Klara and the Sun by Kazuo Ishiguro on Iphone
  • PDF The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino Maebaru
  • Seven Ghosts by Chris Priestley on Ipad
  • Twisted Lace by A M McCoy on Audiobook New
  • Read online Spawn Compendium Volume 6 Color Edition by Paul Jenkins Todd McFarlane Erik Larsen To
  • PDF EPUB Download Ill Have What Shes Having by Chelsea Handler Full Book
  • DOWNLOADS You A Novel by Caroline Kepnes
  • Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone Lisa Anchin on
  • epub download The Bloodied Nightgown and Other Essays by Joan Acocella
  • PDF Kindle Todas esas cosas que te diré mañana Everything Ill Say to You Tomorrow by Elisabet Ben
  • epub download Tabers Cyclopedic Medical Dictionary by Donald Venes MD MSJ
  • Read online Lovers Touch and A Deal with Demakis by Penny Jordan Tara Pammi
  • 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
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 23:23:50
Previous
Deletes a pet
Built with