My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle La mujer de arriba The Wife Upstairs by Freida McFadden
  • Pdf ePub Its the Manager Gallup finds the quality of managers and team leaders is the single bigges
  • PDF EPUB Download The New Generation Crips and Folk Nation Bible The Inner Secrets of Knowledge W
  • Pdf ePub Glorious Exploits A Novel by Ferdia Lennon download ebook
  • DOWNLOAD PDF EPUB Monsieur Pain by Roberto Bolaño Chris Andrews
  • DOWNLOAD PDF EPUB Summer Camp for Slasher Victims by Matthew Mercer
  • DOWNLOADS A Murder Most French by Colleen Cambridge
  • Online Read Ebook Spectacular en español Caraval 4 - Ed. Coleccionista by Stephanie Garber
  • download pdf Illustrators Sketchbooks Inside the Creative Processes of 60 Iconic and Emerging Artis
  • Atlas of Brutalist Architecture by Phaidon Editors on Ipad
  • PDF My Midlife Magic Daze by Jennifer L. Hart
  • Read online Dangerous Amish Inheritance and Hidden in Amish Country by Debby Giusti Dana R. Lynn
  • Eleven Madison Park The Plant-Based Chapter A Cookbook by Daniel Humm on Audiobook New
  • PDF Kindle Winning Over the Wrangler Falling for the Rancher Father by Linda Ford
  • PDF EPUB Download Follow Her Heart by Marta Perry Full Book
  • Download PDF The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • download pdf Cursebound A Novel by Saara El-Arifi
  • DOWNLOAD PDF EPUB My Beautiful Man Volume 2 Manga by Yuu Nagira Megumi Kitano
  • Read online Toi Te Mana An Indigenous History of Maori Art by Deidre Brown Ngarino Ellis Jonathan
  • pdf download The Sex Lives of African Women Self-Discovery Freedom and Healing by
  • Online Read Ebook The Apothecary Diaries Volume 12 Light Novel by Natsu Hyuuga Touko Shino Kevin S
  • PDF EPUB Download The Path of Freemasonry The Craft as a Spiritual Practice by Mark Stavish Artur
  • download pdf A Husband for Christmas by Gail Gaymer Martin
  • Download Pdf How Isnt It Going Conversations After October 7 by Delphine Horvilleur Lisa Appignanes
  • PDF EPUB Download Michelle Yeoh A Little Golden Book Biography by Angela Song Irene Chan Full Boo
  • DOWNLOAD PDF EPUB A Time to Protect by Lois Richer
  • Download PDF Open Wide A Cookbook for Friends by benny blanco Jess Damuck
  • PDF DOWNLOAD Harry Potter The Blueprints by Insight Editions Jody Revenson on Iphone
  • pdf download The Shape of What Remains by Lisa C Taylor
  • Download PDF Deep Dive Exploring the Real-world Value of Open Source Intelligence by Rae L. Baker M
  • An Unfinished Love Story A Personal History of the 1960s by Doris Kearns Goodwin on Ipad
  • download pdf The Grand Scheme of Things A Novel by Warona Jay
  • Download Pdf The Body at the Roman Baths A gripping and charming cozy crime novel by Kate Hardy
  • PDF DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • PDF EPUB Download The Disordered Cosmos A Journey into Dark Matter Spacetime and Dreams Deferred
  • Atlas of Tolkien Deluxe Edition by David Day on Ipad
  • The Music of the How to Train Your Dragon Trilogy A Guide to the Scores of John Powell by Erik Heine
  • Tokyo Revengers Omnibus Vol. 27-28 by Ken Wakui on Audiobook New
  • pdf download Lone Star Heiress and The Runaway Bride by Winnie Griggs Noelle Marchand
  • Read Pdf Darkwing Duck Negaduck Vol 2 The Ancient Order Of Villainy by Jeff Parker John Compton
  • Read pdf Patti Smith Before Easter After by Patti Smith Lynn Goldsmith
  • Pdf ePub The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda download ebook
  • PDF EPUB Download Remembering Peasants A Personal History of a Vanished World by Patrick Joyce Full
  • Download Pdf Understanding Hamas And Why That Matters by Helena Cobban Rami G. Khouri Paola Caridi
  • PDF EPUB Download The Restaurant of Lost Recipes by Hisashi Kashiwai Jesse Kirkwood Full Book
  • DOWNLOAD PDF EPUB Right-Wing Women by Andrea Dworkin Moira Donegan
  • epub download The Knight and the Moth by Rachel Gillig
  • pdf download The Warrior Poet Way A Guide to Living Free and Dying Well by John Lovell
  • Phonic Books Get Out of the Game Decodable Books for Older Readers CVC Consonant Blends and Consona
  • Smooth-Talking Texan by Candace Camp on Audiobook New
  • 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
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 22:33:15
Previous
Deletes a pet
Built with