My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Capitana by Cassandra James Full Book
  • Online Read Ebook Warring Tides by Mk Ahearn
  • download pdf Learn AI-assisted Python Programming With GitHub Copilot and ChatGPT by Leo Porter Da
  • PDF DOWNLOAD The Woman Question in Jewish Studies by Susannah Heschel Sarah Imhoff on Iphone
  • PDF EPUB Download The House of Hidden Meanings A Memoir by RuPaul Full Book
  • PDF EPUB Download 1657 The Year of the Plague by Roberto Palumbo Joie Davidow Luca Mercogliano F
  • PDF Download Bend Dont Break by Julie L Brown
  • DOWNLOADS Insatiable The Edge of Darkness Book 1 by Leigh Rivers
  • epub download Light Chaser by Cheryl Babirad
  • DOWNLOAD PDF EPUB The Great Voyage Disney Moana 2 by RH Disney Disney Storybook Art Team
  • Download Pdf The Many Lives of Pusheen the Cat by Claire Belton
  • pdf download The Book of Bill by Alex Hirsch
  • PDF Download Magic in the Air The Myth the Mystery and the Soul of the Slam Dunk by Mike Sielski
  • The Well-Lived Life A 103-Year-Old Doctors Six Secrets to Health and Happiness at Every Age by Glady
  • Perla la súper perrita by Isabel Allende Sandy Rodríguez on Ipad
  • Download Pdf The War on Men Why Society Hates Them and Why We Need Them by Owen Strachan
  • Read Pdf Brand ON The Hidden Power of Brand Alignment by Brandon Coleman Jr
  • PDF The Patrick Melrose Novels Never Mind Bad News Some Hope Mothers Milk At Last by Edward St.
  • PDF Jokes to Offend Men by Allison Kelley Danielle Kraese Kate Herzlin Ysabel Yates
  • DOWNLOAD PDF EPUB This Light Between Us A Novel of World War II by Andrew Fukuda
  • PDF Kindle High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves
  • DOWNLOAD PDF EPUB La armadura de la luz The Armor of Light by Ken Follett
  • download pdf Heroes Feast The Deck of Many Morsels 50 Cards for Conjuring Snacks Libations and Sw
  • DOWNLOAD PDF EPUB Counting the Cost by Jill Duggar Derick Dillard Craig Borlase
  • Jeanne Mammen Art Between Resistance and Conformity in Modern Germany 1916-1950 by Camilla Smith D
  • Pdf ePub Wordsworth in Bogotï½ by Scott E Sundby download ebook
  • Download Pdf Both And A Life in Many Worlds by Huma Abedin
  • PDF EPUB Download Terraria Volume 1 The Journey Begins by Brendan J. Vogel Matt Clingempeel Gran
  • Elevated Ambitions by Aurora Steinhart on Audiobook New
  • PDF Blood Dragon Book 3 The Ravens Fate by Micah Johnson
  • Online Read Ebook Dust by Dusti Bowling
  • The Stopover by T L Swan on Ipad
  • Read Pdf The Neuroscience of Tarot From Imagery to Intuition to Prediction by Siddharth Ramakrishn
  • pdf download Wanted Big Game Library Edition by Mark Millar JG Jones Pepe Larraz
  • Download Pdf Cosmos Explore the Wonders of the Universe by DK Becky Smethurst
  • Promesas crueles by Rebecca Ross on Ipad
  • Understanding Hamas And Why That Matters by Helena Cobban Rami G. Khouri Paola Caridi Jeroen Gunn
  • download pdf Equality What It Means and Why It Matters by Thomas Piketty Michael J. Sandel
  • DOWNLOADS Revenant-X by David Wellington
  • epub download Poor Things Movie Tie-in A Novel by Alasdair Gray
  • PDF EPUB Download The Metaphysical Cannabis Oracle Deck by Maggie Wilson Ejiwa Ebenebe Full Book
  • epub download London Calling by James Ponti
  • Download Pdf Wild Love by Elsie Silver
  • Pdf ePub Stars Collide A Novel by Rachel Lacey download ebook
  • Read online Someday by David Levithan
  • PDF Kindle RoomMate A Twisted Psychological Thriller from a Female Serial Killers POV by Chad Olsha
  • Pdf ePub Nana Kaoru Volume 5 by Ryuta Amazume download ebook
  • How to Be Dateable The Essential Guide to Finding Your Person and Falling in Love by Julie Krafchick
  • PDF Download In Our Time by Tom Wolfe
  • DOWNLOAD PDF EPUB Wicked Volume One in the Wicked Years by Gregory Maguire
  • 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