My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download The Landmark Xenophons Anabasis by
  • Cherringham - A Fatal Illusion A Cosy Crime Series by Matthew Costello Neil Richards on Iphone New
  • Read online The Amish Christmas Secret and The Amish Widows Christmas Hope by Vannetta Chapman Carr
  • epub download Say Youll Remember Me by Abby Jimenez
  • DOWNLOAD PDF EPUB Flash Gordon Vol. 1 Escape from Planet Death by Jeremy Adams Will Conrad Lee L
  • epub download MCAT Complete 7-Book Subject Review 2024-2025 Books Online 3 Practice Tests by Kapla
  • PDF DOWNLOAD Who Better Than You The Art of Healthy Arrogance Dreaming Big by Will Packer on Ipho
  • PDF Download Earl Crush A Novel by Alexandra Vasti
  • PDF Kindle Brave New World A Graphic Novel by Aldous Huxley Fred Fordham
  • PDF Download The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino M
  • Online Read Ebook No Promises No Lies by Aj Wilding
  • Pdf ePub Ghost Station by S.A. Barnes download ebook
  • Wisdom Stories of Tibet Tales of Magic Adventure and Bravery by Laura Burges Lama Chonam Wen Hsu
  • PDF Download Mi primer libro de criaturas fantásticas Bedtime Book of Magical Creatures by Stephen
  • PDF EPUB Download People of Means A Novel by Nancy Johnson Full Book
  • pdf download Our Sweet Violet The third book in the Flower Girls collection from Britains best-loved
  • PDF Kindle In the Foothills of the Himalayas by Sarah Hussain
  • Download Pdf A Love So Strong When Love Comes Home by Arlene James
  • pdf download Sunrise Nights by Jeff Zentner Brittany Cavallaro
  • PDF Download Akane-banashi Vol. 10 by Yuki Suenaga Takamasa Moue
  • PDF Kindle The Brothers Karamazov A Novel in Four Parts and an Epilogue by Fyodor Dostoyevsky Davi
  • PDF EPUB Download Beautiful Broken Love by Shanora Williams Full Book
  • PDF Kindle Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube
  • Read online Human Acts by Han Kang Deborah Smith
  • download pdf Brimstone Deluxe Limited Edition by Callie Hart
  • Read online Viento y verdad Wind and Truth by Brandon Sanderson Manuel Viciano Delibano David Te
  • PDF Kindle Bungo Stray Dogs Wan Vol. 10 by Sango Harukawa Neco Kanai
  • epub download Narwhals Sweet Tooth A Narwhal and Jelly Book 9 by Ben Clanton
  • The Innkeepers Wife by Lynn A. Coleman on Ipad
  • Read online Wolf Creek Father by Penny Richards
  • Download PDF Spy x Family Family Portrait by Aya Yajima
  • pdf download The Twilight Saga Deluxe Hardcover Collection by Stephenie Meyer
  • DOWNLOADS Panzer III vs T-34 Eastern Front 1941 by Peter Samsonov
  • Bolt Action Campaign D-Day US Sector by Warlord Games Peter Dennis on Iphone New Format
  • Download PDF Deep Dive Exploring the Real-world Value of Open Source Intelligence by Rae L. Baker M
  • PDF Kindle Drawing Anime Faces and Feelings 800 facial expressions from joy to terror anger surpr
  • Cat Kid Comic Club From the Creator of Dog Man by Dav Pilkey on Iphone New Format
  • epub download Momo Arashima Duels the Queen of Death by Misa Sugiura
  • PDF Download The Roots of Goodness Zen Master Dogens Teaching on the Eight Qualities of a Great Pe
  • DOWNLOAD PDF EPUB Andres Valencia Painting Without Rules by Andres Valencia Alexander M. Rigby
  • Download Pdf Summer Sons by Lee Mandelo
  • Read online S. El barco de Teseo by J.J. Abrams Doug Dorst
  • Marmalade Boy Collectors Edition 5 by Wataru Yoshizumi on Audiobook New
  • Read online A Business Proposal Vol. 8 by Haehwa NARAK Perilla
  • Read online Harry Potter and the Sorcerers Stone MinaLima Edition by Minalima Design J. K. Rowling
  • DOWNLOADS Data Visualization with Microsoft Power BI by Alex Kolokolov Maxim Zelensky
  • El diario de Tita Como agua para chocolate Titas Diary Like Water for Chocolate by Laura Esquivel
  • When the Moon Hatched by Sarah A. Parker on Ipad
  • PDF Download Mine for a Moment by Catharina Maura
  • PDF EPUB Download Tower of Silence by Larry Correia Full Book
  • 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-08 00:47:50
Previous
Deletes a pet
Built with