My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Loving Someone with a Serious Mental Illness Caring for Your Loved One and Yourself on the
  • download pdf Conversations with the Zs Book One The Energetics of the New Human Soul by Lee Harris
  • Read pdf Go as a River by Shelley Read
  • Online Read Ebook DC Finest Supergirl The Girl of Steel by Otto Binder Jerry Siegel Jim Mooney
  • epub download Italy Abruzzo by Luciano di Gregorio
  • Pdf ePub The Little Book of Trading Options Like the Pros Learn How to Become the House by David M.
  • Pdf ePub Wakenhyrst by Michelle Paver download ebook
  • Read pdf Microsoft 365 Outlook For Dummies by Faithe Wempen
  • PDF Kindle Psychocinema by Helen Rollins
  • pdf download House of Flame and Shadow by Sarah J. Maas
  • download pdf Max in the House of Spies A Tale of World War II by Adam Gidwitz
  • Read pdf High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves
  • Read pdf The Nutmegs Curse Parables for a Planet in Crisis by Amitav Ghosh
  • Source Code My Beginnings by Bill Gates on Ipad
  • Read pdf Debt-Free Art Degree Foundations in Drawing The Affordable Way to Learn Professional Skil
  • Pdf ePub High Island Blues A George Molly Palmer-Jones Novel by Ann Cleeves download ebook
  • Download Pdf Disappointing Affirmations by Dave Tarnowski
  • Download Pdf The One Impossible Labyrinth by Matthew Reilly
  • Read Pdf Dance in the Vampire Bund Age of Scarlet Order Vol. 13 by Nozomu Tamaki
  • PDF Kindle River East River West A Novel by Aube Rey Lescure
  • The Art of the National Parks Boxed Note Card Set by Fifty-Nine Parks on Audiobook New
  • PDF DOWNLOAD Kingmakers Year Four Deluxe Edition by Sophie Lark on Iphone
  • Download Pdf First Sticker Book Sparkly Fairies by Holly Bathie Katie Wood
  • Read pdf The Louvre A Guide to Art by Dominique de Font-Réaulx Laurence des Cars
  • DOWNLOADS Rock Paper Scissors A Novel by Alice Feeney
  • PDF EPUB Download 2120 by George Wylesol Full Book
  • Pdf ePub Aurelia by Stephen R. Lawhead download ebook
  • PDF EPUB Download Axe Me No Questions by Paula Charles Full Book
  • download pdf What If Jesus Was Serious about Heaven A Visual Guide to Experiencing Gods Kingdom amo
  • Online Read Ebook We Spy Fungi Search and Find Mushrooms Cacti and Other Fascinating Plants by Reb
  • Download Pdf Joyful Colorwork Socks 25 New Knitting Patterns for Fun Whimsical Footwear Featuring P
  • DOWNLOADS Never Gamble Your Heart by Lindsay Lovise
  • Read Pdf Quantum Mechanics A Graduate Course by Horatiu Nastase
  • DOWNLOAD PDF EPUB Discovering Daniel Finding Our Hope in Gods Prophetic Plan Amid Global Chaos by
  • Read online The Only Neurology Book Youll Ever Need by Alison I. Thaler Malcolm S. Thaler
  • PDF EPUB Download Playground by Aron Beauregard Full Book
  • epub download Gustave Caillebotte Painting Men by Scott Allan Gloria Groom Paul Perrin Michael Ma
  • epub download Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube
  • Download PDF The Unfinished Harauld Hughes by Richard Ayoade
  • DOWNLOAD PDF EPUB Bruegels Three Soldiers by Anna-Claire Stinebring Salman Toor
  • PDF EPUB Download Late Roman Combat Tactics by Ilkka Syvänne Full Book
  • PDF EPUB Download When Stories Wound Responsible Living in a Polarized World by Nathaniel Samuel Ful
  • PDF EPUB Download Pink Slime A Novel by Fernanda Trías Heather Cleary Full Book
  • Outbride Beauty and the Beasts Vol. 7 by Tohko Tsukinaga on Audiobook New
  • Read online Saxophone Colossus The Life and Music of Sonny Rollins by Aidan Levy
  • PDF Confessions of the Damned by Michael David Gartner
  • DOWNLOADS Boxings Greatest Controversies Blunders Blood Feuds and Mob Corruption by Louis Joshua E
  • DOWNLOAD PDF EPUB Eidolon The Auric Hammer by Marc Collins
  • Kaiju No. 8 Exclusive on the Third Division by Naoya Matsumoto Keiji Ando on Iphone New Format
  • Read pdf Hal by Amanda Berlind
  • 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