My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Victorian Housecats to Knit by Sara Elizabeth Kellner
  • PDF EPUB Download Source Code My Beginnings by Bill Gates Full Book
  • pdf download Big Nate In the Zone by Lincoln Peirce
  • PDF EPUB Download All the Dangerous Things by Stacy Willingham Full Book
  • download pdf Chocolate All Day Recipes for indulgence - morning noon and night by Kirsten Tibballs
  • epub download Signs The Secret Language of the Universe by Laura Lynne Jackson
  • PDF EPUB Download The Unfinished Harauld Hughes by Richard Ayoade Full Book
  • Download PDF Cartography. by Kenneth Field
  • PDF EPUB Download Paradise Rot A Novel by Jenny Hval Marjam Idriss Full Book
  • pdf download The Courage Gap 5 Steps to Braver Action by Margie Warrell PhD
  • PDF EPUB Download Liberated The Radical Art and Life of Claude Cahun by Kaz Rowe Full Book
  • PDF DOWNLOAD The Arrangements by Orly Konig on Iphone
  • Read Pdf Marvel What If . . . Marc Spector Was Host to Venom A Moon Knight Venom Story by Mike Ch
  • DOWNLOADS David Kibbes Power of Style A Guided Journey to Help You Discover Your Authentic Style by
  • DOWNLOAD PDF EPUB Not Sure Who Needs to Hear This But . . . 100 Postcards with Beautiful Reminder
  • download pdf The Tainted Cup by Robert Jackson Bennett
  • The Skills-Powered Organization The Journey to the Next-Generation Enterprise by Ravin Jesuthasan T
  • Midnights by Greig Beck on Ipad
  • PDF EPUB Download Nothing Ever Happens Here by Seraphina Nova Glass Full Book
  • Read pdf The Senators Wife A Novel by Liv Constantine
  • DOWNLOAD PDF EPUB How to Read a Room Navigate Any Situation Lead with Confidence and Create an I
  • epub download The Magic of Knowing What You Want A Practical Guide to Unearthing the Wisdom of Your
  • PDF DOWNLOAD Metamorphoses Translated by Stephanie McCarter by Stephanie McCarter Ovid on Iphone
  • DOWNLOAD PDF EPUB Russia and Ukraine Entangled Histories Diverging States by Maria Popova Oxana
  • Care Work Dreaming Disability Justice by Leah Lakshmi Piepzna-Samarasinha on Iphone New Format
  • PDF EPUB Download Game of Thrones The Costumes the official book from Season 1 to Season 8 by Mic
  • Download PDF The Hidden Dead by Tracy Whitwell
  • download pdf Cooking and the Crown Royal Recipes from Queen Victoria to King Charles III A Cookboo
  • Download PDF Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • Read pdf Happy Fathers Day from the Crayons by Drew Daywalt Oliver Jeffers
  • pdf download When Culture Hates You Persevering for the Common Good as Christians in a Hostile Publi
  • Read online Alphabetical Diaries by Sheila Heti
  • This Is Why We Lied Will Trent Thriller 12 by Karin Slaughter on Iphone New Format
  • PDF Kindle Research For People Who Think They Would Rather Create by Dirk Vis Florian Cramer
  • download pdf Principles of Economics by Saifedean Ammous
  • DOWNLOADS Adult Children of Emotionally Immature Parents Guided Journal Your Space to Heal Reflect
  • 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