My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • mercy and price by Carson Yenchar on Audiobook New
  • epub download xGenius Expected Goals and the Science of Winning Football Matches by James Tippett
  • PDF Kindle The Rosewood Hunt by Mackenzie Reed
  • Five Banners Inside the Duke Basketball Dynasty by John Feinstein on Iphone New Format
  • Download PDF Julia A Novel by Sandra Newman
  • Online Read Ebook Family Values Kurt Courtney Frances Bean by Guzman Michael Azerrad
  • Read Pdf The Cannibal Owl by Aaron Gwyn
  • Accomplice to the Villain by Hannah Nicole Maehrer on Audiobook New
  • Online Read Ebook The Love of My Afterlife GMA Book Club Pick by Kirsty Greenwood
  • Download Pdf Promise Me Not by Meagan Brandy
  • Read Pdf Dark Calories How Vegetable Oils Destroy Our Health and How We Can Get It Back by Catheri
  • Online Read Ebook Black Psychedelic Revolution From Trauma to Liberation--How to heal from racial g
  • epub download Piranesi by Susanna Clarke
  • DOWNLOADS Norwegian Method The Culture Science and Humans Behind the Groundbreaking Approach to El
  • DOWNLOAD PDF EPUB KinnPorsche Novel Vol. 2 by Daemi Avaritia Billy Balibally
  • The Complete Guide to Drawing Action Manga A Step-by-Step Artists Handbook by shoco Makoto Sawa on
  • Pdf ePub The Short Victorious War by David Weber download ebook
  • Online Read Ebook Anythings Pastable 81 Inventive Pasta Recipes for Saucy People by Dan Pashman
  • PDF Viewer Discretion Advised 2 Forbidden Desires by Yuuki Iwasaki
  • Download Pdf Love Oracle Divine Guidance for Relationships by Jerico Mandybur
  • End of August A Novel by Paige Dinneny on Audiobook New
  • PDF Download My Hateful Man Light Novel by Yuu Nagira Rikako Kasai
  • Download PDF Platirius Infiltration Book I by D.L. Hannah
  • download pdf Nightfall Devils Night 4 by Penelope Douglas
  • DOWNLOADS Twisted Souls by Shannon McLellan
  • Hunting Adeline Te encontraré by H.D CARLTON on Iphone New Format
  • PDF EPUB Download The Toys of Mighty Max by L S Terrey Full Book
  • epub download Building Construction Illustrated by Francis D. K. Ching
  • download pdf All about Love New Visions by Bell Hooks
  • The Final Curtain A Mystery by Keigo Higashino Giles Murray on Ipad
  • pdf download Statistical Analysis of Molecular and Genomic Evolution by Xun Gu
  • Mangal II Stories and Recipes by Ferhat and Sertac Dirik Action Bronson on Audiobook New
  • Download Pdf Fate of the Five Veil of Vasara by Niamh Rose
  • PDF Robert Hookes Experimental Philosophy by Felicity Henderson
  • PDF EPUB Download The Yellow Rambutan Tree Mystery by Ovidia Yu Full Book
  • Pdf ePub Platform Engineering A Guide for Technical Product and People Leaders by Camille Fournie
  • Pdf ePub Mi sombría Vanessa My Dark Vanessa by Kate Elizabeth Russell download ebook
  • Pdf ePub Self-Care for Autistic People 100 Ways to Recharge De-Stress and Unmask by Megan Anna Ne
  • epub download Jella Lepman and Her Library of Dreams The Woman Who Rescued a Generation of Children
  • Designed for Purpose Discovering Gods Daily Direction by Tanya Prince on Ipad
  • download pdf Ordinary Notes by Christina Sharpe
  • Read online Legion by William Peter Blatty
  • PDF EPUB Download At the Fount of Creation by Tobi Ogundiran Jonathan Strahan Full Book
  • PDF Kindle Hitorijime My Hero 15 by Memeco Arii
  • Download Pdf The Many Lives Loves of Hazel Lavery by Lois Cahall
  • 5 Steps to a 5 AP Precalculus by Deborah B. Klipp Paul Rodriguez on Audiobook New
  • DOWNLOADS Fractured Freedom by Shain Rose
  • epub download Microsoft 365 Outlook For Dummies by Faithe Wempen
  • The Soros Agenda by Rachel Ehrenfeld on Audiobook New
  • Online Read Ebook Jane Eyre by Charlotte Brontë
  • 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
Modified at 2025-06-03 22:48:01
Previous
Deletes a pet
Built with