My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD A Christmas Romance by Betty Neels on Iphone
  • The Gwendy Trilogy Bind-Up Gwendys Button Box Gwendys Magic Feather Gwendys Final Task by Stephen
  • Read pdf The Hungry Succubus Wants to Consume Him Vol. 1 by Tabireco
  • The Spear Cuts Through Water A Novel by Simon Jimenez on Iphone New Format
  • Read Pdf Of Blood Stone by A J Braun
  • Read Pdf The Wrong Dog by Carol Lea Benjamin
  • Download PDF I Love You So Much Its Killing Us Both A Novel by Mariah Stovall
  • Pdf ePub Shelterwood by Lisa Wingate download ebook
  • Redeeming 6 Spanish Edition by Chloe Walsh on Iphone New Format
  • PDF EPUB Download Almost Sunset by Wahab Algarmi Full Book
  • Octopussy and The Living Daylights by Ian Fleming on Iphone New Format
  • PDF DOWNLOAD The Running Grave by Robert Galbraith on Iphone
  • epub download Find Me by André Aciman
  • PDF EPUB Download A Proposal Worth Millions by Sophie Pembroke Full Book
  • DOWNLOADS Practicing the Way Be with Jesus. Become like him. Do as he did. by John Mark Comer
  • Walking Otherward Forty Meditations on Following Jesus Path of Other-centered Co-suffering Love by
  • Kingpin A Joe DeMarco Thriller by Mike Lawson on Iphone New Format
  • Read Pdf Dark Hope by Christine Feehan
  • The Piece That Fits Special Edition by N. J. Gray on Ipad
  • Download PDF Tarot for Practical People by Alice Mastroleo
  • pdf download Little Book of Tom Ford The story of the iconic brand by Kristen Bateman
  • DOWNLOAD PDF EPUB Home Away From Home by Cynthia Lord
  • Read online The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard
  • Download Pdf The Wedding People A Novel by Alison Espach
  • epub download Massive by John Trefry
  • DOWNLOADS Justice Bites A Legal Thriller by Laura Snider James Chandler
  • Download PDF The Last Guy on Earth Special Edition by Sarina Bowen
  • DOWNLOAD PDF EPUB The Amish Nurses Suitor and The Nannys Amish Family by Carrie Lighte Patricia J
  • PDF Download Jokes to Offend Men by Allison Kelley Danielle Kraese Kate Herzlin Ysabel Yates
  • PDF Kindle The Art of Lies of P by NEOWIZ ROUND8 Studio
  • PDF Kindle Defeating the Giant A Guide to Recognizing and Healing from Narcissistic Abuse by Rosann
  • Read pdf SECRET WARS BATTLEWORLD OMNIBUS VOL. 1 JIM CHEUNG COVER by Marvel Various
  • PDF Kindle Harry Potter and the Chamber of Secrets MinaLima Edition Illustrated edition by
  • Read pdf Wasps in the Ice Cream by Tim McGregor
  • PDF Download Hauntress by Minetaro Mochizuki
  • 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-10 23:58:15
Previous
Deletes a pet
Built with