My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Mighty Marvel Calendar Book A Visual History The Marvel Comics Calendar Book 197
  • Read Pdf Clash of Legions by Anthony Riches
  • pdf download The Art of Mac Malware Volume 2 Detecting Malicious Software by Patrick Wardle
  • download pdf Dork Diaries 16 Tales from a Not-So-Bratty Little Sister by Rachel Renée Russell
  • epub download Where Is My Brother A familys journey through grief and loss by Sean Edward Fox Quint
  • Read pdf Seven Ghosts by Chris Priestley
  • DOWNLOADS Leo A Benny Griessel Novel by Deon Meyer
  • PDF EPUB Download How to Suffer Outside A Beginners Guide to Hiking and Backpacking by Diana Helmuth
  • PDF DOWNLOAD Mask of the Deer Woman by Laurie L. Dove on Iphone
  • PDF DOWNLOAD Small Wars Manual Poems by Chris Santiago on Iphone
  • Read pdf Heartstopper 5 A Graphic Novel by Alice Oseman
  • PDF EPUB Download Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Rich
  • PDF EPUB Download Momo Arashima Duels the Queen of Death by Misa Sugiura Full Book
  • PDF EPUB Download Sonic the Hedgehog Official Movie Novelizations by Kiel Phegley Full Book
  • PDF Messengers The Guitars of James Hetfield by James Hetfield
  • Meant for Each Other by Ginna Gray on Ipad
  • PDF DOWNLOAD Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Boone
  • Online Read Ebook Two Weddings and a Murder by Alyssa Maxwell
  • epub download A Promise for His Daughter by Danielle Thorne
  • Download PDF The Desert Talon by Karin Lowachee
  • PDF The Beggar Student by Osamu Dazai Sam Bett
  • PDF Close Your Eyes and Count to 10 A Novel by Lisa Unger
  • Read Pdf Doctor Who The Eaters of Light Target Collection by Rona Munro
  • Download Pdf Play of Shadows by Sebastien de Castell
  • The Long Walk by Stephen King on Iphone New Format
  • epub download The Locked Door by Freida McFadden
  • PDF EPUB Download JoyFull Cook Effortlessly Eat Freely Live Radiantly A Cookbook by Radhi Devlukia
  • PDF EPUB Download Rich Girl Caretaker 1 by Sakura Miwabe Yuusaku Sakaishi Full Book
  • download pdf Lolly Willowes Or The Loving Huntsman by Sylvia Townsend Warner Mona Awad
  • PDF DOWNLOAD Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban on Ipho
  • The Artist Decoded Tarot A Deck and Guidebook by Jennifer Sodini Yoshino Mitch Horowitz on Ipad
  • epub download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • PDF Download The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for
  • PDF Kindle Lovemaking How to Talk about Sex with Your Spouse by Renzo Ortega Monica Ortega Emily
  • Download Pdf Beartooth A Novel by Callan Wink
  • Read Pdf Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • 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-16 01:13:01
Previous
Deletes a pet
Built with