My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF A Husband for Christmas by Gail Gaymer Martin
  • DOWNLOADS I Am Toph Avatar The Last Airbender by Mei Nakamura Bao Luu
  • epub download Rick Kotanis 400 Million Dollar Summer by Waka T. Brown
  • DOWNLOAD PDF EPUB Dawn of Grace Mary Magdalenes Story by Jill Eileen Smith
  • PDF EPUB Download Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranga
  • Pdf ePub A Dark and Hollow Star by Ashley Shuttleworth download ebook
  • DOWNLOAD PDF EPUB The Legendary Witch Is Reborn as an Oppressed Princess Volume 3 by Touko Amekawa
  • epub download Lobster and other things Im learning to love by Hollie McNish
  • PDF Kindle I Want to Die but I Still Want to Eat Tteokbokki further conversations with my psychiatr
  • DOWNLOAD PDF EPUB Pesadilla en Navidad by Tessa Bailey
  • DOWNLOADS In Our Time by Tom Wolfe
  • Read online The Best Advice from clowns On Dating by Libby K
  • PDF EPUB Download Peerless Novel Vol. 2 by Meng Xi Shi Full Book
  • I May Be a Guild Receptionist but Ill Solo Any Boss to Clock Out on Time Vol. 4 light novel by Mat
  • Eternal Magic by Alexandra Ivy on Iphone New Format
  • Online Read Ebook Halo Empty Throne by Jeremy Patenaude
  • Read pdf Yeonnam-Dongs Smiley Laundromat A Novel by Kim Jiyun
  • PDF Kindle Una historia de Espana A History of Spain by Arturo Pérez-Reverte
  • PDF DOWNLOAD A Ruse of Shadows by Sherry Thomas on Iphone
  • PDF The Will of the Many by James Islington
  • Download Pdf Who Could Ever Love You A Family Memoir by Mary L. Trump
  • pdf download Max in the Land of Lies A Tale of World War II by Adam Gidwitz
  • Online Read Ebook Justice League International Book One Born Again 2025 Edition by J.M. DeMatteis K
  • PDF Download An Ember in the Ashes Complete Series Paperback Box Set 4 books by Sabaa Tahir
  • PDF Leo A Benny Griessel Novel by Deon Meyer
  • pdf download The Hard Way by Carol Lea Benjamin
  • PDF Kindle Lunar A History of the Moon in Myths Maps and Matter by Matthew Shindell
  • pdf download Why Nothing Works Who Killed Progress-and How to Bring It Back by Marc J. Dunkelman
  • PDF EPUB Download Valiant Vel Vel Phillips and the Fight for Fairness and Equality by Jerrianne Ha
  • DOWNLOAD PDF EPUB Heist Royale Thieves Gambit Book 2 by Kayvion Lewis
  • PDF DOWNLOAD Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis on Iphone
  • Pdf ePub Las 48 leyes del poder The 48 Laws of Power by Robert Greene download ebook
  • DOWNLOAD PDF EPUB Far Sector DC Compact Comics Edition by N. K. Jemisin Jamal Campbell
  • download pdf The Console Chronicles by Lost in Cult
  • Download PDF Creep A Love Story by Emma van Straaten
  • Pdf ePub Twilight Out of Focus 6 Long Take Part 2 by Jyanome download ebook
  • Download PDF Every Bird from Sea to Shining Sea One Couples Big Year in Birding - A Photographic Adv
  • pdf download Double Trouble Scandinavian Style Two Repertoires for Black by Marek Soszynski Al Lawr
  • PDF Download Jujutsu Kaisen The Official Character Guide by Gege Akutami
  • PDF DOWNLOAD Shark Girl by Kate Beaton on Iphone
  • Pdf ePub I Hate Fairyland Book Three by Skottie Young Brett Bean download ebook
  • Online Read Ebook Julia A Retelling of George Orwells 1984 by Sandra Newman
  • epub download Pretty Delicious Simple Modern Mediterranean Served with Style A Cookbook by Alia El
  • epub download Tsugumi Project 6 by ippatu
  • Download PDF On His Brides Terms by Abby Green
  • PDF DOWNLOAD Battle Angel Alita Mars Chronicle Volume 10 by Yukito Kishiro on Iphone
  • pdf download Right-Wing Women by Andrea Dworkin Moira Donegan
  • Download PDF Headshot A Novel by Rita Bullwinkel
  • pdf download A Witchs Guide to Fetch Work Rituals Spells Practices by Blake Malliway
  • DOWNLOAD PDF EPUB The Legend of Vox Machina The Whitestone Chronicles Volume 1--Ripley by Critical
  • 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-11 21:43:25
Previous
Deletes a pet
Built with