My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Sito An American Teenager and the City that Failed Him by Laurence Ralph
  • PDF EPUB Download Puzzled 4 Murder by J. C. Eaton Full Book
  • PDF DOWNLOAD Azula in the Spirit Temple Avatar The Last Airbender by Faith Erin Hicks Peter Wartm
  • pdf download Shallow River by H. D. Carlton
  • Download Pdf Wafu Cooking Everyday Recipes with Japanese Style A Cookbook by Sonoko Sakai
  • Lawful Vol. 1 by Greg Pak Diego Galindo Irma Kniivila on Audiobook New
  • The Art of Horizon Forbidden West by Guerrilla Games on Iphone New Format
  • download pdf True Beauty Volume Three A WEBTOON Unscrolled Graphic Novel by Yaongyi
  • PDF EPUB Download The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagan
  • PDF EPUB Download Meditations 68.02 by Northwestern Publishing House NPH Full Book
  • PDF Kindle Waves in an Impossible Sea How Everyday Life Emerges from the Cosmic Ocean by Matt Stras
  • PDF EPUB Download Every Single Secret by Christina Dodd Full Book
  • DOWNLOADS The Unicorn Project A Novel about Developers Digital Disruption and Thriving in the Age
  • Read Pdf The Overactive Mind Turning Anxiety into Strength by Andrew Espinosa
  • Pdf ePub Broken Harbor Deluxe Edition by Catherine Cowles download ebook
  • Online Read Ebook The Disney Christmas Cookbook 50 Delicious Recipes by Joy Howard Disney Books
  • Read Pdf The Saga of Tanya the Evil Vol. 25 manga by Carlo Zen Shinobu Shinotsuki Chika Tojo R
  • DOWNLOAD PDF EPUB RHCSA Red Hat Enterprise Linux 9 Certification Study Guide Eighth Edition Exam
  • PDF EPUB Download Wyoming Promises by Kerri Mountain Full Book
  • Online Read Ebook How to Read and Interpret a Birth Chart Guideposts for Understanding Natal Astrolo
  • Read Pdf The Veiled Kingdom BN Exclusive Edition by Holly Renee
  • PDF Kindle A Most Tolerant Little Town The Explosive Beginning of School Desegregation by Rachel Lo
  • Online Read Ebook Im a Fan A Novel by Sheena Patel
  • Margos Got Money Troubles Margo tiene problemas de dinero Spanish edition A Novel by Rufi Thorpe A
  • download pdf The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • DOWNLOAD PDF EPUB American Spirits by Russell Banks
  • epub download The Texans Twin Blessings by Rhonda Gibson
  • PDF Andrzej Sapkowskis The Witcher The Edge of the World by Andrzej Sapkowski Magdalena Salik Tom
  • Download Pdf We Lived on the Horizon A Novel by Erika Swyler
  • Proceedings of the 6th International Conference on Informatics Engineering and Information Science I
  • Every Precious and Fragile Thing A Novel by Barbara Davis on Iphone New Format
  • PDF My Funny Demon Valentine Deluxe Limited Edition by Aurora Ascher
  • A Husband for Christmas by Gail Gaymer Martin on Iphone New Format
  • DOWNLOAD PDF EPUB EdTech Essentials 12 Strategies for Every Classroom in the Age of AI by Monica B
  • PDF DOWNLOAD SOLEIL Fashion lookbook by Tanaka on Iphone
  • Download PDF Time Expansion Experiences The Psychology of Time Perception and the Illusion of Linear
  • DOWNLOAD PDF EPUB Eternal Magic by Alexandra Ivy
  • Baphomet Revealed Mysteries and Magic of the Sacred Icon by Heather Lynn PhD on Audiobook New
  • Yana Toboso Artworks Black Butler 3 by Yana Toboso on Ipad
  • Download PDF Alfredo Paredes at Home by Alfredo Paredes Brad Goldfarb
  • DOWNLOADS Farewell My Odin Vol.1 by Chihiro Yoshioka
  • pdf download Moon Girl and Devil Dinosaur Wreck and Roll A Marvel Original Graphic Novel by Stephani
  • download pdf Cherringham - A Fatal Illusion A Cosy Crime Series by Matthew Costello Neil Richards
  • Download Pdf The Light Eaters How the Unseen World of Plant Intelligence Offers a New Understanding
  • Download PDF Funny Story by Emily Henry
  • The Kew Book of Drawing Flora and Fauna 20 stunning step-by-step tutorials by Joy-Louise Robinson on
  • TDBoKT Guide Talent Development Body of Knowledge by Association for Talent Development on Ipad
  • DOWNLOAD PDF EPUB Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by
  • Online Read Ebook The Blue Wolves of Mibu 4 Blue Miburo by Tsuyoshi Yasuda
  • pdf download Pony Express Courtship and The Express Riders Lady by Rhonda Gibson Stacy Henrie
  • 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