My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Fate Kaleid Liner Prisma Illya The Complete Manga Collection by Hiroshi Hiroyama
  • PDF Kindle No Rest for the Wicked by Kresley Cole
  • Read online 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparaiso
  • PDF EPUB Download Friends Lovers and the Big Terrible Thing A Memoir by Matthew Perry Full Book
  • epub download On a NASA Flight to Heaven by D. Seth Horton
  • Rocky Mountain Daddy and Her Colorado Cowboy by Lois Richer Mindy Obenhaus on Iphone New Format
  • epub download The Legendary Witch Is Reborn as an Oppressed Princess Volume 3 by Touko Amekawa Kuro
  • DOWNLOAD PDF EPUB This American Ex-Wife How I Ended My Marriage and Started My Life by Lyz Lenz
  • PDF Three Days in June A Novel by Anne Tyler
  • PDF How Economics Works by DK
  • Online Read Ebook Cassiels Servant by Jacqueline Carey
  • PDF Can I Have a Hug First by Mary Paula Hunter
  • PDF DOWNLOAD Outbride Beauty and the Beasts Vol. 6 by Tohko Tsukinaga on Iphone
  • pdf download Wednesdays Child Stories by Yiyun Li
  • Download PDF Three Days in June A Novel by Anne Tyler
  • The Talent A Novel by Daniel DAddario on Audiobook New
  • PDF EPUB Download Ordinary Notes by Christina Sharpe Full Book
  • Download PDF The Case Files of Jeweler Richard Light Novel Vol. 9 by Nanako Tsujimura Utako Yukihir
  • Download PDF Languishing How to Feel Alive Again in a World That Wears Us Down by Corey Keyes
  • pdf download The Quiet Storm A Historical and Cultural Analysis of the Power Passion and Pain of R
  • Download PDF Der graue Wolf Der 19. Fall für Gamache by Louise Penny Andrea Stumpf Gabriele Werbec
  • DOWNLOADS Among the Bros A Fraternity Crime Story by Max Marshall
  • Read Pdf American Idolatry How Christian Nationalism Betrays the Gospel and Threatens the Church b
  • DOWNLOAD PDF EPUB The Science of Racism Everything You Need to Know but Probably Dont - Yet by Keo
  • Download PDF Formula 1 Technology The engineering explained by Steve Rendle
  • pdf download Dawn of Grace Mary Magdalenes Story by Jill Eileen Smith
  • Read online Sea of Thieves Heart of Fire by Chris Allcock
  • Read online World Chess Champion Strategy Training for Club Players From Bobby Fischer to Ding Liren
  • pdf download Secret Love by Willow Aster
  • DOWNLOADS All or Nothing How Trump Recaptured America by Michael Wolff
  • DOWNLOAD PDF EPUB Twisted 3. Twisted Hate by Ana Huang Mariona Gastó Jiménez
  • American Teenager How Trans Kids Are Surviving Hate and Finding Joy in a Turbulent Era by Nico Lang
  • PDF Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson
  • Read online My Lesbian Experience With Loneliness Special Edition Hardcover by Nagata Kabi
  • download pdf Black or White Vol. 9 by Sachimo
  • Nuestra parte de noche by Mariana Enriquez on Iphone New Format
  • Download Pdf Lore Olympus Volume Seven by Rachel Smythe
  • PDF The Last Dangerous Visions by Harlan Ellison J. Michael Straczynski Max Brooks James S. A. C
  • 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