My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Stand By Me A Guide to Navigating Modern Meaningful Caregiving by Allison J. Applebaum
  • PDF Alchemy of Secrets by Stephanie Garber
  • When Stars Are Scattered by Victoria Jamieson Omar Mohamed Iman Geddy on Audiobook New
  • The Social Paradox Autonomy Connection and Why We Need Both to Find Happiness by William von Hippe
  • Read pdf The Sun and the Star A Nico di Angelo Adventure by Rick Riordan Mark Oshiro
  • PDF EPUB Download The Desert Talon by Karin Lowachee Full Book
  • PDF Kindle The Christmas Strike by Nikki Rivers
  • PDF EPUB Download Sea of Stars The Concept Art of Bryce Kho by Bryce Kho Full Book
  • The Book Against Death by Elias Canetti Peter Filkins Joshua Cohen on Audiobook New
  • pdf download Pilgrim A Theological Memoir by Tony Campolo Steve Rabey
  • PDF Kindle The Fast Track Inside the Surging Business of Womens Sports by Jane McManus
  • Download Pdf The Salmon Who Dared to Leap Higher by Ahn Do-hyun
  • Of Beasts and Fowls by Pilar Adon Katie Whittemore on Iphone New Format
  • PDF Download The Ripple Effect by Rebecca Caprara
  • epub download Existential Physics A Scientists Guide to Lifes Biggest Questions by Sabine Hossenfeld
  • PDF Download Tell Me What You Did A Novel by Carter Wilson
  • Download PDF Engaged in Deception by Kim Lawrence
  • Shallow River by H. D. Carlton on Ipad
  • DOWNLOAD PDF EPUB Oh the Places Youll Go by Dr. Seuss
  • Read pdf Arctic Sun A Grumpy Sunshine MM Romance by Annabeth Albert
  • Lovemaking How to Talk about Sex with Your Spouse by Renzo Ortega Monica Ortega Emily Stimpson Cha
  • Download Pdf Minecraft Annual 2025 by Mojang AB Farshore
  • Online Read Ebook Illuminations Stories by Alan Moore
  • PDF EPUB Download Alejandra Pizarnik Prosa completa Alejandra Pizarnik Complete Prose by Alejand
  • Read Pdf Rockefeller Controlling the Game by Jacob Nordangård
  • pdf download The Lumberjacks Bride by Jean Kincaid
  • PDF EPUB Download Girl in Pieces by Kathleen Glasgow Full Book
  • Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mathis Christine Chi
  • DOWNLOADS Average Joe The Memoirs of a Blue-Collar Entertainer by Joe Piscopo Walter Scott Lamb
  • First Words An interactive book with tracks to trace and flaps to lift by Patricia Hegarty Summer
  • Kregels Easter Treasury of Illustrated Bible Stories by Matt Lockhart on Ipad
  • Daughters of the Blue Moon by Millie Abecassis on Audiobook New
  • Online Read Ebook The 32 Principles Harnessing the Power of Jiu-Jitsu to Succeed in Business Relati
  • DOWNLOADS Pods by Shawn Winchell
  • Public Domain Volume 2 by Chip Zdarsky on Ipad
  • PDF EPUB Download The Unrealizable Towards a Politics of Ontology by Giorgio Agamben Alberto Tosc
  • PDF DOWNLOAD The Neighbor Favor by Kristina Forest on Iphone
  • Read Pdf Medieval Syria and the Onset of the Crusades The Political World of Bilad al-Sham 1050-11
  • DOWNLOAD PDF EPUB Nero A Novel by Conn Iggulden
  • The Royal House of Karedes Books 1-4 Billionaire Prince Pregnant Mistress The Playboy Sheikhs Virgi
  • PDF Kindle Overwatch Declassified - An Official History by Seanan McGuire
  • Right-Wing Women by Andrea Dworkin Moira Donegan on Audiobook New
  • PDF EPUB Download Little Tarts 1 X Pastry Recipe 60 X Fillings by Meike Schaling Full Book
  • Money Lies and God Inside the Movement to Destroy American Democracy by Katherine Stewart on Iphon
  • PDF Download Briar Vol. 2 by Christopher Cantwell Alex Lins
  • Download Pdf Lights Cowboy Action by Lesley Ann McDaniel
  • DOWNLOADS Forest of Noise Poems by Mosab Abu Toha
  • Henri Cartier-Bresson The Decisive Moment by Henri Cartier-Bresson Cl ment Ch roux on Ipad
  • DOWNLOAD PDF EPUB Down with the System A Memoir by Serj Tankian
  • Read online Looking for You A Novel by Alexander McCall Smith
  • 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