My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Listen to Your Sister A Novel by Neena Viel
  • PDF EPUB Download The Unraveling of Emlyn Dulaine Volume 1 by Lindsay A Franklin Full Book
  • Russia and Ukraine Entangled Histories Diverging States by Maria Popova Oxana Shevel on Audiobook
  • PDF How to Draw a Secret by Cindy Chang
  • DOWNLOAD PDF EPUB A Year of Watercolour A seasonal guide to botanical watercolour painting by Harr
  • PDF EPUB Download Irreducible Consciousness Life Computers and Human Nature by Federico Faggin Fu
  • PDF Good Nature Why Seeing Smelling Hearing and Touching Plants is Good for Our Health by Kathy
  • Pdf ePub Their Shadows Deep A Novel by Peter Golden download ebook
  • epub download Vietnam Morning to Midnight A cookbook by Jerry Mai by Jerry Mai
  • PDF Confessions A Novel by Catherine Airey
  • PDF EPUB Download Bloom by Delilah S. Dawson Full Book
  • DOWNLOADS Microsoft 365 Outlook For Dummies by Faithe Wempen
  • Pdf ePub Tearmoon Empire Volume 14 by Nozomu Gilse Gilse Madeleine Gilse download ebook
  • Read Pdf The Paranormal Ranger A Navajo Investigators Search for the Unexplained by Stanley Milfor
  • Read online Play Along by Liz Tomforde
  • pdf download An ABC of Childhood Tragedy by Jordan B Peterson Juliette Fogra
  • True Love Fades Away When the Contract Ends - Music of the Flower Gardens and Heavens Light Novel V
  • PDF Download The Complete Writings by Zhuangzi Chris Fraser
  • Las indignas The Unworthy by Agustina Bazterrica on Ipad
  • Read online Whispers of Fortune Golden State Treasure Book 1 by Mary Connealy
  • PDF DOWNLOAD Harlequin Intrigue December 2024 - Box Set 1 of 2 A Suspense Romance Collection by De
  • Pdf ePub The Giza Death Star Revisited An Updated Revision of the Weapon Hypothesis of the Great Py
  • DOWNLOADS What If Jesus Was Serious about Heaven A Visual Guide to Experiencing Gods Kingdom among U
  • DOWNLOAD PDF EPUB Mr. X A Novel by Peter Straub
  • Online Read Ebook What to Do When You Get Dumped by Suzy Hopkins Hallie Bateman
  • Three Meant To Be by MN Bennet on Iphone New Format
  • Yandere Dark Elf She Chased Me All the Way From Another World Vol. 1 by Nakanosora on Iphone New For
  • PDF Download Love Oracle Divine Guidance for Relationships by Jerico Mandybur
  • PDF DOWNLOAD Lucid Dreaming A Concise Guide to Awakening in Your Dreams and in Your Life With CD
  • PDF EPUB Download Relational Spirituality A Psychological-Theological Paradigm for Transformation by
  • Read pdf JoJo A-GoGo by Hirohiko Araki
  • PDF The Ends of Things A Novel by Sandra Chwialkowska
  • PDF El recluso by Freida McFadden Santiago del Rey Farrés
  • PDF EPUB Download Carmilla Deluxe Edition The Dark Sapphic Romance that inspired Dracula by Sherida
  • PDF EPUB Download The Wok Recipes and Techniques by J. Kenji Lopez-Alt Full Book
  • Read online Notes on Peter Eisenman The Gradual Vanishing of Architecture by M. Surry Schlabs
  • PDF Download DAREDEVIL BY CHIP ZDARSKY OMNIBUS VOL. 2 RAFAEL DE LATORRE COVER by Chip Zdarsky Mar
  • Blood Dragon Book 3 The Ravens Fate by Micah Johnson on Iphone New Format
  • DOWNLOAD PDF EPUB Raising Mentally Strong Kids How to Combine the Power of Neuroscience with Love
  • download pdf The Last Dangerous Visions by Harlan Ellison J. Michael Straczynski Max Brooks Jame
  • Download PDF Japanese Joinery by Dorian Bracht
  • Download Pdf Care Work Dreaming Disability Justice by Leah Lakshmi Piepzna-Samarasinha
  • PDF No Domain The John McAfee Tapes by
  • pdf download The Misfit of Demon King Academy Volume 8 Light Novel by SHU Shizumayoshinori Mana Z.
  • PDF EPUB Download Quicksand by Nella Larsen Full Book
  • download pdf Fall of Ruin and Wrath by Jennifer L. Armentrout
  • pdf download Debt-Free Art Degree Foundations in Drawing The Affordable Way to Learn Professional Sk
  • PDF EPUB Download Great Big Beautiful Life by Emily Henry Full Book
  • download pdf What the Light Touches A Novel by Xavier Bosch Samantha Mateo
  • PDF BLADE VOL. 1 MOTHER OF EVIL by Bryan Hill Elena Casagrande Valentina Pinti
  • 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
Previous
Deletes a pet
Built with