My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download The Lumberjacks Bride by Jean Kincaid
  • download pdf Blue Skies A Novel by T. C. Boyle
  • Read pdf A Clinicians Guide to Supporting Autistic Clients Over 100 Treatment Recommendations and
  • PDF EPUB Download Nagahama to Be or Not to Be by Scarlet Beriko Full Book
  • PDF EPUB Download Platform Engineering A Guide for Technical Product and People Leaders by Camille
  • download pdf The Battle for Kyiv The Fight for Ukraines Capital by Christopher A Lawrence
  • pdf download The Electric State by Simon Stalenhag
  • PDF DOWNLOAD Twilight Deluxe Collectors Edition by Stephenie Meyer on Iphone
  • PDF EPUB Download Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell
  • PDF Lucid Dreaming A Concise Guide to Awakening in Your Dreams and in Your Life With CD by Stephe
  • Online Read Ebook Designing Audio Circuits and Systems by Bob Cordell
  • Pdf ePub Horimiya Vol. 17 - Special Edition A Piece of Memories by HERO Daisuke Hagiwara Taylor
  • Read Pdf Fullmetal Alchemist 20th Anniversary Book by Hiromu Arakawa Square Enix
  • PDF Heart Breath Mind Conquer Stress Build Resilience and Perform at Your Peak by Leah Lagos
  • PDF Download Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranganat
  • Read pdf System Collapse by Martha Wells
  • Christmas at Hogwarts by J. K. Rowling Ziyi Gao on Iphone New Format
  • Read pdf Cuentos by Dan Henderson
  • Download PDF The Official Stardew Valley Cookbook by ConcernedApe Ryan Novak
  • PDF EPUB Download Icebreaker A Novel by Hannah Grace Full Book
  • DOWNLOAD PDF EPUB The Winner by C.J. Parsons
  • Download PDF Loca by Alejandro Heredia
  • PDF EPUB Download When Youre Ready A Love Story by Kareem Rosser Full Book
  • download pdf The Immortal by S. R. Finch
  • Read pdf A Love So Strong When Love Comes Home by Arlene James
  • PDF Download 2020 Standard Catalog of World Coins 1901-2000 by Tracy L Schmidt
  • pdf download The Lycan Princess the Lethal Potions Wiz by Stinas Pen
  • Online Read Ebook The Order Kingdom of Fallen Ash by Katerina St Clair Logan St Clair
  • Pdf ePub Marvel Comics A Manga Tribute by Marvel Comics download ebook
  • epub download Swordheart by T. Kingfisher
  • PDF EPUB Download The Hungry Succubus Wants to Consume Him Vol. 1 by Tabireco Full Book
  • pdf download Look at Me The XXXTENTACION Story by Jonathan Reiss
  • PDF DOWNLOAD Quicksilver by Callie Hart on Iphone
  • DOWNLOADS The Black Curtain by Cornell Woolrich George Pelecanos
  • Read pdf The Fifth Domain Defending Our Country Our Companies and Ourselves in the Age of Cyber
  • epub download Holmes of Kyoto Volume 16 by Mai Mochizuki Minna Lin
  • Read Pdf Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with Her
  • PDF Table for 51 Lessons Learned from Sharing Meals Across America by Shari Leid
  • Pdf ePub The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal Newport d
  • download pdf Sweet Tooth 100 Desserts to Save Room For A Baking Book by Sarah Fennel
  • Read Pdf Break Point A Spicy Second Chance Sports Romance by Yahrah St. John
  • pdf download The Dukes Only Desire by Anna Harrington
  • Read online The Art of Insight How Great Visualization Designers Think by Alberto Cairo
  • Read Pdf The Book of Purrs Everyday Thoughts from Your Feline Friends by Luis Coelho
  • First Words An interactive book with tracks to trace and flaps to lift by Patricia Hegarty Summer
  • Lonely Planet Experience Andalucia by Anna Kaminski Fiona Flores Watson Isabella Noble on Iphone N
  • PDF DOWNLOAD Strange Spanish Edition by Alex Mirez on Iphone
  • Pdf ePub Stealing Horses to Great Applause The Origins of the First World War Reconsidered by Paul
  • PDF DOWNLOAD Myth of Money Breaking Out of the Failing Financial System by Tatiana Koffman on Ipho
  • PDF Kindle Better Than the Movies by Lynn Painter
  • 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