My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Children of Anguish and Anarchy by Tomi Adeyemi
  • PDF EPUB Download Nana Kaoru Volume 5 by Ryuta Amazume Full Book
  • Read Pdf Cambridge International AS and A Level Chemistry Revision Guide by Judith Potter Peter C
  • Read pdf The Dimensions of Paradise Sacred Geometry Ancient Science and the Heavenly Order on Ea
  • Read online Seasons of the Witch - Ostara Oracle by Lorriane Anderson Tijana Lucovic Juliet Diaz
  • PDF DOWNLOAD Think Twice by Harlan Coben on Iphone
  • Ends of the Earth Journeys to the Polar Regions in Search of Life the Cosmos and Our Future by Nei
  • Forgive Why Should I and How Can I by Timothy Keller on Ipad
  • Online Read Ebook Brand ON The Hidden Power of Brand Alignment by Brandon Coleman Jr
  • PDF I Black Pharaoh Rise to Power Kemet Edition by Emmanuel Kulu
  • PDF Download Running Injury Free Second Edition Prevent and Treat the Most Common Running Injurie
  • PDF EPUB Download The Words Left Unspoken by Allie Michelle Full Book
  • DOWNLOAD PDF EPUB Natural History of Silence by Jérôme Sueur Helen Morrison
  • DOWNLOADS Merlins Tour of the Universe Revised and Updated for the Twenty-First Century A Traveler
  • Watch Where They Hide A Jordan Manning Novel by Tamron Hall on Audiobook New
  • Normal People A Novel by Sally Rooney on Iphone New Format
  • PDF EPUB Download Caught Up Into Darkness Trilogy by Navessa Allen Full Book
  • Download Pdf High Road Leadership Bringing People Together in a World That Divides by John C. Maxwel
  • PDF EPUB Download Exalting Jesus in Hosea Joel Amos Obadiah by Allan Moseley Jonathan Akin Ph.
  • epub download Hells Toxic Trio Defeat the Demonic Spirits that Stall Your Destiny by Ryan LeStrange
  • PDF The Wedding People A Novel by Alison Espach
  • The Kaggle Workbook Self-learning exercises and valuable insights for Kaggle data science competitio
  • Read pdf Four Eids and a Funeral by Faridah Àbíké-Íyímídé Adiba Jaigirdar
  • The Perfect Son by Freida McFadden on Audiobook New
  • download pdf Credence by Penelope Douglas
  • DOWNLOADS River East River West A Novel by Aube Rey Lescure
  • download pdf Under the Same Stars by Libba Bray
  • Read online A Light in the Flame by Jennifer L. Armentrout
  • Online Read Ebook Healthy Food for Healthy Kids 120 Simple Nourishing Gluten- and Dairy-Free Recip
  • pdf download Boys Who Hunt Dark RH Bully Romance by Clarissa Wild
  • DOWNLOADS Between the Moon and Her Night by Jaclyn Kot
  • PDF Kindle Protecting Wren A Navy SEAL Military Romantic Suspense Novel by Susan Stoker
  • Online Read Ebook Reset How to Change Whats Not Working by Dan Heath
  • PDF Murder in Paradise A George Molly Palmer-Jones Novel by Ann Cleeves
  • Download PDF Mastering Palo Alto Networks - Second Edition Secure your infrastructure and apply best
  • epub download Learn WinUI 3 - Second Edition Leverage WinUI and the Windows App SDK to create modern
  • Online Read Ebook The Songbird and the Heart of Stone by Carissa Broadbent
  • PDF Download What the Light Touches A Novel by Xavier Bosch Samantha Mateo
  • Pdf ePub Straplez.com by Rose Eden download ebook
  • Last Twilight in Paris A Novel by Pam Jenoff on Iphone New Format
  • epub download The Play Briar U 3 by Elle Kennedy
  • download pdf Excuse Me While I Ugly Cry by Joya Goffney
  • Read Pdf When Culture Hates You Persevering for the Common Good as Christians in a Hostile Public
  • Online Read Ebook Light on the Mahabharata A Guide to Indias Great Epic by Nicholas Sutton PhD The
  • pdf download Hexen 2.0 Tarot by Suzanne Treister
  • Online Read Ebook Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing
  • Read pdf Biblia RVR 1960 letra grande tamaño manual Piel rosada con índice Spanish Bible RVR 19
  • PDF DOWNLOAD Midnight Gate An Epic Fantasy Romance by S K Stapar on Iphone
  • Read online A History of Philosophy The Condensed Copleston by Anthony Carroll Frederick Copleston
  • Nina the Starry Bride 7 by RIKACHI on Ipad
  • 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