My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Iron Embers An epic fantasy romance by Helen Scheuerer on Audiobook New
  • download pdf One in a Millennial On Friendship Feelings Fangirls and Fitting In by Kate Kennedy
  • PDF EPUB Download Welcome to Arkham An Illustrated Guide for Visitors by AP Klosky David Annandal
  • DOWNLOAD PDF EPUB Princeton Review AP Statistics Prep 20th Edition 5 Practice Tests Complete Con
  • Online Read Ebook Doorway to the Stars by McDevitt Jack
  • PDF 2024 2025 ASVAB For Dummies Book 7 Practice Tests Flashcards Videos Online by Angie Papple J
  • download pdf Say You Swear Roman TikTok-Hit Bewegende New Adult College-Romance by Meagan Brandy A
  • Magus of the Library 7 by Mitsu Izumi on Ipad
  • DOWNLOADS Our Countrys Presidents A Complete Encyclopedia of the U.S. Presidency 2024 Edition by Na
  • epub download Steps A Guide to Transforming Your Life When Willpower Isnt Enough by John Ortberg Jo
  • PDF Download Art Masters Vincent Van Gogh by Susie Hodge
  • Blob A Love Story by Maggie Su on Iphone New Format
  • pdf download Cannabis Banking Legal Frameworks and Practical Solutions for Cultivating Compliance by
  • Download PDF The Art of Dead Space by Motive Studio
  • DOWNLOAD PDF EPUB Absolute Power Task Force VII by Jeremy Adams Steve Orlando Travis Mercer Lau
  • Foolish Puckboy by Eden Finley Saxon James on Iphone New Format
  • Read online A Criada The Housemaid by Freida McFadden
  • PDF Kindle The Jam Maker 2025s best new Tasmanian historical fiction based on a true story perfect
  • Pdf ePub Legion by William Peter Blatty download ebook
  • PDF EPUB Download Race and Liberty in America The Essential Reader by Jonathan Bean Full Book
  • Pdf ePub The Myth That Made Us How False Beliefs about Racism and Meritocracy Broke Our Economy and
  • Read pdf The Sun of Knowledge Shams al-Maarif An Arabic Grimoire in Selected Translation by
  • The Short List How to Drive Business Development by Focusing on the People Who Matter Most by David
  • download pdf Forest Deep by Beth Ball
  • download pdf Tomie Complete Deluxe Edition by Junji Ito
  • PDF Tailspin by John Armbruster
  • DOWNLOADS Purposeful Practice for Poker The Modern Approach to Studying Poker by Dr. Patricia Cardne
  • PDF EPUB Download Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder Fu
  • PDF Kindle David Buschs Sony Alpha a6700 ILCE-6700 Guide to Digital Photography by David D. Busch
  • DOWNLOAD PDF EPUB Burn for Me by Ilona Andrews
  • PDF EPUB Download Triangle A Novel by Danielle Steel Full Book
  • PDF DOWNLOAD The Haunted Wood A History of Childhood Reading by Sam Leith on Iphone
  • The Pardon The Politics of Presidential Mercy by Jeffrey Toobin on Ipad
  • epub download Persuader by Lee Child
  • Download Pdf Sound the Gong The Kingdom of Three Duology Book Two by Joan He
  • pdf download The Mystery of Joy by Peter Kreeft
  • PDF Kindle Bite of the Kaba Lagoon A Branches Book Kwames Magic Quest 3 by Bernard Mensah Natasha
  • Read Pdf Dear Wendy by Ann Zhao
  • DOWNLOAD PDF EPUB A Midsummer Nights Dream by William Shakespeare
  • epub download Bloodline by Will Wight
  • Read pdf Momo Arashima Breaks the Mirror of the Sun by Misa Sugiura
  • DK Top 10 Scotland by DK Travel on Iphone New Format
  • PDF Download Yeonnam-Dongs Smiley Laundromat A Novel by Kim Jiyun
  • PDF DOWNLOAD Titanic Minute by Minute One Ships Final Hours Thousands of Live in the Balance by J
  • DOWNLOAD PDF EPUB Five Nights at Freddys Return to the Pit Interactive Novel 2 by Scott Cawthon A
  • Read online Quicksilver by Callie Hart
  • A Monsoon Rising The Hurricane Wars Book 2 by Thea Guanzon on Iphone New Format
  • Online Read Ebook Artifice Access a disability in fantasy anthology by Ella T Holmes
  • Notes on Shapeshifting by Gabi Abrão on Ipad
  • PDF Kindle Barbie Word Search Quips Quotes and Coloring Book by Editors of Thunder Bay Press
  • 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