My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Lujuria. Libro 2 Lascivious. Book 2 by Eva Muñoz
  • Read pdf Discount Armageddon by Seanan McGuire
  • PDF EPUB Download Toxic Prey by John Sandford Full Book
  • Caledonian Road A Novel by Andrew OHagan on Ipad
  • Read online Radical Self-Care for Helpers Healers and Changemakers by Nicole Steward
  • DOWNLOADS Starting Point 1979-1996 by Hayao Miyazaki
  • PDF EPUB Download The Reckoning of Roku Avatar the Last Airbender Chronicles of the Avatar Book 5
  • Read pdf A New Way to Bake Re-imagined Recipes for Plant-based Cakes Bakes and Desserts by Philip
  • Download Pdf Darkwing Duck Negaduck Vol 2 The Ancient Order Of Villainy by Jeff Parker John Compton
  • PDF Kindle Surprise Heir for the Princess by Kate Hardy
  • Budgerigars The Color Revolution by Don Burke on Audiobook New
  • The Art of Overwatch Volume 2 Limited Edition by on Audiobook New
  • Download Pdf Lobster and other things Im learning to love by Hollie McNish
  • PDF Download Age of Revolutions Progress and Backlash from 1600 to the Present by Fareed Zakaria
  • DOWNLOAD PDF EPUB Unforgettable Sacrifice How Black Communities Remembered the Civil War by Hilary
  • download pdf I Know Silly A book about feeling silly shy and embarrassed by Lindsay N. Giroux Al
  • PDF Kindle The Trap by David Icke
  • PDF EPUB Download The Cleaner by Samantha Beal Full Book
  • PDF The Woofmore on Thin Ice The Woofmore 3 by Donna Gephart Lori Haskins Houran Josh Cleland
  • Pdf ePub A Slash of Emerald by Patrice McDonough download ebook
  • Online Read Ebook Christian America and the Kingdom of God White Christian Nationalism from the Puri
  • PDF EPUB Download Money Shot by Christa Faust Full Book
  • PDF EPUB Download The Last Guy on Earth Special Edition by Sarina Bowen Full Book
  • Read Pdf The Seven Husbands of Evelyn Hugo A Novel by Taylor Jenkins Reid
  • Download Pdf The Wanderlust Kitchen A spiritual guide to healing recipes from around the world by Sa
  • Read online A Childs Christmas Wish by Erica Vetsch
  • PDF Kindle How the Railways Will Fix the Future Rediscovering the Essential Brilliance of the Iron
  • PDF EPUB Download A Soaring Season The Incredible Inspiring Story of the 2003-04 Saint Josephs Hawk
  • Well Always Have Summer by Jenny Han on Iphone New Format
  • pdf download Baseball Card Price Guide 47 by Beckett Media
  • DOWNLOAD PDF EPUB Last Stand of the Stone Fist A Songs of Chaos Novella by Michael R. Miller
  • PDF EPUB Download VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu Full Book
  • download pdf Wooing the Witch Queen by Stephanie Burgis
  • Online Read Ebook The Curious Vanishing of Beatrice Willoughby by G. Z. Schmidt
  • Download PDF How to DAO Mastering the Future of Internet Coordination by Kevin Owocki Puncar Don T
  • download pdf Volver la vista atrás by Juan Gabriel Vásquez
  • pdf download God Didnt Make Us to Hate Us 40 Devotions to Liberate Your Faith from Fear and Reconnec
  • DOWNLOADS Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie Souza
  • Pdf ePub Aliens - Artbook by download ebook
  • PDF Download The Knights Templar History Mystery by Tony McMahon
  • Read online I Want to Love You Till Your Dying Day 1 by Nachi Aono
  • PDF Download Kharn Eater of Worlds by Anthony Reynolds
  • DOWNLOAD PDF EPUB Always by Helen Hardt
  • Read Pdf Chocolate All Day Recipes for indulgence - morning noon and night by Kirsten Tibballs
  • Read online Diablo Tales from the Horadric Library A Short Story Collection by Adam Foshko Delilah
  • The Book of CODESYS The ultimate guide to PLC and Industrial Controls programming with the CODESYS I
  • Read Pdf Twisted Lies by Ana Huang
  • PDF EPUB Download Blood Over Bright Haven A Novel by M. L. Wang Full Book
  • PDF Download Soiled Dove by April Timms
  • PDF DOWNLOAD Monsieur Pain by Roberto Bolaño Chris Andrews 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:48:10
Previous
Deletes a pet
Built with