My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Grokking Algorithms Second Edition by Aditya Y Bhargava Full Book
  • Download Pdf Thutmose III and Hatshepsut Pharaohs of Egypt Their Lives and Afterlives by Aidan Dods
  • PDF Villains Are Destined to Die Vol. 7 by SUOL AH Cho David Odell
  • PDF EPUB Download The Complete Guide to Yoga Props by Jenny Clise Loren Fishman Full Book
  • Read online The Next Deadly Chapter by V. M. Burns
  • epub download Stop Lying to Yourself 101 Hard Truths to Help You Change Your Life by Simon Gilham
  • DOWNLOADS Death by Deception by Tracy Gardner
  • pdf download The Vikings Bride by Darlene Mindrup
  • PDF EPUB Download Percy Jackson and the Olympians The Official Cookbook by Jarrett Melendez Full Boo
  • Online Read Ebook The Disputed Austro-Hungarian Border Agendas Actors and Practices in Western Hun
  • pdf download Word Search Challenge 100 Puzzles to do anywhere anytime by Roland Hall
  • Pdf ePub Puzzled 4 Murder by J. C. Eaton download ebook
  • Read online The Art of Lies of P by NEOWIZ ROUND8 Studio
  • Read pdf Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • PDF Kindle The First Girl by Claire McGowan
  • Online Read Ebook The Most Notorious by Jaki Yamorichan
  • The Kaiju Preservation Society by John Scalzi on Audiobook New
  • Download Pdf Pantera Vulgar Display of Power by Steve Niles Danijel Zezelj Kevin Mellon Ian Edgin
  • PDF EPUB Download Text Appeal by Kylie Scott Full Book
  • Read pdf Obey Me The Comic Vol. 1 by Subaru Nitou NTT Solmare
  • Read Pdf Of the Ashes by Tracy MacNish
  • DOWNLOADS Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • PDF DOWNLOAD DD 5E Original Adventures Reincarnated 7 Dark Tower by Chris Doyle Bob Brinkman on I
  • DOWNLOADS Sumud A New Palestinian Reader by Malu Halasa Jordan Elgrably
  • PDF Download House of Fury by Evelio Rosero Victor Meadowcroft
  • Ascendance of a Bookworm Fanbook 5 by Miya Kazuki You Shiina Suzuka quof on Audiobook New
  • PDF Kindle The House on the Strand by Daphne du Maurier
  • Download PDF Possible How We Survive and Thrive in an Age of Conflict by William Ury
  • Slow Productivity The Lost Art of Accomplishment Without Burnout by Cal Newport on Audiobook New
  • Easygoing Territory Defense by the Optimistic Lord Production Magic Turns a Nameless Village into th
  • epub download Five Nights at Freddys Return to the Pit Interactive Novel 2 by Scott Cawthon Adrienn
  • Online Read Ebook Time Expansion Experiences The Psychology of Time Perception and the Illusion of L
  • DOWNLOADS Japanese Joinery by Dorian Bracht
  • Smart Girl A First-Gen Origin Story by Latonya Rease Miles on Iphone New Format
  • Three Grumpy Groomsmen by Emma Foxx on Ipad
  • Read pdf Robert Ludlums The Bourne Vendetta by Brian Freeman
  • The Moon and Serpent Bumper Book of Magic by Alan Moore Steve Moore Various on Ipad
  • Download Pdf Holly A Belladonna Novella by Adalyn Grace
  • DOWNLOAD PDF EPUB American Teenager How Trans Kids Are Surviving Hate and Finding Joy in a Turbule
  • Download PDF Lover Birds by Leanne Egan
  • Pdf ePub The Time Changers Tarot Reading for Yourself Your Community and Your World with the Wait
  • PDF DOWNLOAD Shelterwood A Novel by Lisa Wingate on Iphone
  • Read online Twisted Ink A Why Choose Romance by A. M. Mccoy
  • Read Pdf Juniper Mae Knight of Tykotech City by Sarah Soh
  • DOWNLOAD PDF EPUB The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle
  • PDF DOWNLOAD House of Psychotic Women Expanded Edition An Autobiographical Topography of Female Ne
  • Pdf ePub The Missing Piece A Proven Method to Single-Handedly Transform Your Relationship and Creat
  • PDF EPUB Download Compromised into Marriage by Liz Tyner Full Book
  • Download Pdf Building Modern CLI Applications in Go Develop next-level CLIs to improve user experien
  • PDF DOWNLOAD The Parent Plan Part 1 by Paula Detmer Riggs on Iphone
  • 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-12 23:02:15
Previous
Deletes a pet
Built with